diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-13 20:34:01 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-13 20:34:01 -0500 |
commit | 6533d7dd084ad8cdd479a0d9b416f94c809d96e1 (patch) | |
tree | 65eb1a3b71b3fa1ed79e5ca7f03715215ad1c629 /src/Navigation.tsx | |
parent | 56cf890debeb9872f791ccb992a5587f2c05fd9e (diff) | |
download | voidsky-6533d7dd084ad8cdd479a0d9b416f94c809d96e1.tar.zst |
Add /support and /support/privacy
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 22d8d8b21..2bfc84ea9 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -35,6 +35,8 @@ import {PostUpvotedByScreen} from './view/screens/PostUpvotedBy' import {PostRepostedByScreen} from './view/screens/PostRepostedBy' import {DebugScreen} from './view/screens/Debug' import {LogScreen} from './view/screens/Log' +import {SupportScreen} from './view/screens/Support' +import {PrivacyPolicyScreen} from './view/screens/PrivacyPolicy' const navigationRef = createNavigationContainerRef<AllNavigatorParams>() @@ -64,6 +66,8 @@ function commonScreens(Stack: typeof HomeTab) { <Stack.Screen name="PostRepostedBy" component={PostRepostedByScreen} /> <Stack.Screen name="Debug" component={DebugScreen} /> <Stack.Screen name="Log" component={LogScreen} /> + <Stack.Screen name="Support" component={SupportScreen} /> + <Stack.Screen name="PrivacyPolicy" component={PrivacyPolicyScreen} /> </> ) } |