diff options
Diffstat (limited to 'src/view/screens/tabroots/Search.tsx')
-rw-r--r-- | src/view/screens/tabroots/Search.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/view/screens/tabroots/Search.tsx b/src/view/screens/tabroots/Search.tsx new file mode 100644 index 000000000..044ca749c --- /dev/null +++ b/src/view/screens/tabroots/Search.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import {Shell} from '../../shell' +import {Text, View} from 'react-native' +import type {RootTabsScreenProps} from '../../routes/types' + +export const Search = (_props: RootTabsScreenProps<'SearchTab'>) => { + return ( + <Shell> + <View style={{justifyContent: 'center', alignItems: 'center'}}> + <Text style={{fontSize: 20, fontWeight: 'bold'}}>Search</Text> + </View> + </Shell> + ) +} |