about summary refs log tree commit diff
path: root/src/screens/Notifications.tsx
blob: 292f4593f242d418828a179466490513d3c3b1f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>
  )
}