18 lines
492 B
TypeScript
18 lines
492 B
TypeScript
import React from 'react';
|
|
import SearchBarComponent from '../../components/V2/SearchBar';
|
|
import { RouteProps } from '../../Navigation';
|
|
import SearchHistory from '../../components/V2/SearchHistory';
|
|
import { View } from 'react-native';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
const SearchView = (props: RouteProps<{}>) => {
|
|
return (
|
|
<View style={{ display: 'flex', gap: 50 }}>
|
|
<SearchBarComponent />
|
|
<SearchHistory />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default SearchView;
|