diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-07-21 16:43:47 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-07-21 16:43:47 -0500 |
commit | 29ed3d2ecf1fd6de8af0f25f6d541fe2adaf61f9 (patch) | |
tree | afc0d632c981c097013a2fbb1c15decc1e78bec0 /src/view/screens/Notifications.tsx | |
parent | 28dbc5f5e614b3caf08d36a7edaaf19a0ee0f0bc (diff) | |
download | voidsky-29ed3d2ecf1fd6de8af0f25f6d541fe2adaf61f9.tar.zst |
Add header to PostThread view; update navigation to include stacking so that each tab maintains its own browsing history
Diffstat (limited to 'src/view/screens/Notifications.tsx')
-rw-r--r-- | src/view/screens/Notifications.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index 5bade68fa..a7918f177 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -3,7 +3,9 @@ import {Shell} from '../shell' import {Text, View} from 'react-native' import type {RootTabsScreenProps} from '../routes/types' -export const Notifications = (_props: RootTabsScreenProps<'Notifications'>) => { +export const Notifications = ( + _props: RootTabsScreenProps<'NotificationsTab'>, +) => { return ( <Shell> <View style={{justifyContent: 'center', alignItems: 'center'}}> |