Files
Chromacase/front/views/V2/SearchView.tsx
2024-01-09 17:34:35 +01:00

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;