diff options
Diffstat (limited to 'src/view/screens/tabroots/Search.tsx')
-rw-r--r-- | src/view/screens/tabroots/Search.tsx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/view/screens/tabroots/Search.tsx b/src/view/screens/tabroots/Search.tsx deleted file mode 100644 index 044ca749c..000000000 --- a/src/view/screens/tabroots/Search.tsx +++ /dev/null @@ -1,14 +0,0 @@ -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> - ) -} |