about summary refs log tree commit diff
path: root/src/view/screens/tabroots/Menu.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/screens/tabroots/Menu.tsx')
-rw-r--r--src/view/screens/tabroots/Menu.tsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/view/screens/tabroots/Menu.tsx b/src/view/screens/tabroots/Menu.tsx
deleted file mode 100644
index dca5ad33b..000000000
--- a/src/view/screens/tabroots/Menu.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from 'react'
-import {Shell} from '../../shell'
-import {ScrollView, Text, View} from 'react-native'
-import type {RootTabsScreenProps} from '../../routes/types'
-
-export const Menu = (_props: RootTabsScreenProps<'MenuTab'>) => {
-  return (
-    <Shell>
-      <ScrollView contentInsetAdjustmentBehavior="automatic">
-        <View style={{justifyContent: 'center', alignItems: 'center'}}>
-          <Text style={{fontSize: 20, fontWeight: 'bold'}}>Menu</Text>
-        </View>
-      </ScrollView>
-    </Shell>
-  )
-}