15 lines
449 B
TypeScript
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>
|
|
)
|
|
}
|