15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import SearchBarComponent from '../../components/V2/SearchBar';
|
|
import SearchHistory from '../../components/V2/SearchHistory';
|
|
import { View } from 'react-native';
|
|
|
|
const SearchView = () => {
|
|
return (
|
|
<View style={{ display: 'flex', gap: 50 }}>
|
|
<SearchBarComponent />
|
|
<SearchHistory />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default SearchView;
|