We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 332a842 commit aa43e95Copy full SHA for aa43e95
packages/core/src/SearchInputBar/index.tsx
@@ -47,7 +47,7 @@ interface SearchInputBarState {
47
showIcon: boolean;
48
}
49
50
-function SearchInputBar(props: SearchInputBarProps) {
+const SearchInputBar = (props: SearchInputBarProps) => {
51
const inputRef = React.createRef<TextInput>();
52
53
const [state, setState] = useState<SearchInputBarState>({
@@ -131,9 +131,9 @@ function SearchInputBar(props: SearchInputBarProps) {
131
</View>
132
</Loader>
133
);
134
-}
+};
135
136
-export default React.forwardRef(SearchInputBar);
+export default SearchInputBar;
137
138
const styles = StyleSheet.create({
139
centerFlex: {
0 commit comments