Files
bsky-social-app/src/screens/Notifications.tsx
T
2022-06-09 21:34:43 -05:00

15 lines
449 B
TypeScript

import React from 'react'
import {Shell} from '../platform/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>
)
}