about summary refs log tree commit diff
path: root/src/Navigation.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-13 20:34:01 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-03-13 20:34:01 -0500
commit6533d7dd084ad8cdd479a0d9b416f94c809d96e1 (patch)
tree65eb1a3b71b3fa1ed79e5ca7f03715215ad1c629 /src/Navigation.tsx
parent56cf890debeb9872f791ccb992a5587f2c05fd9e (diff)
downloadvoidsky-6533d7dd084ad8cdd479a0d9b416f94c809d96e1.tar.zst
Add /support and /support/privacy
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r--src/Navigation.tsx4
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} />
     </>
   )
 }