32 lines
576 B
TypeScript
32 lines
576 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { Text, View } from '../../components/Themed';
|
|
|
|
import SearchScreenInfo from '../../components/SearchScreenInfo';
|
|
|
|
export default function SearchScreen() {
|
|
return (
|
|
<View style={styles.container}>
|
|
|
|
<SearchScreenInfo />
|
|
|
|
</View>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
title: {
|
|
fontSize: 20,
|
|
fontWeight: 'bold',
|
|
},
|
|
separator: {
|
|
marginVertical: 30,
|
|
height: 1,
|
|
width: '80%',
|
|
},
|
|
});
|