diff options
Diffstat (limited to 'src/view/screens/Notifications.tsx')
-rw-r--r-- | src/view/screens/Notifications.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx new file mode 100644 index 000000000..5bade68fa --- /dev/null +++ b/src/view/screens/Notifications.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 Notifications = (_props: RootTabsScreenProps<'Notifications'>) => { + return ( + <Shell> + <View style={{justifyContent: 'center', alignItems: 'center'}}> + <Text style={{fontSize: 20, fontWeight: 'bold'}}>Notifications</Text> + </View> + </Shell> + ) +} |