about summary refs log tree commit diff
path: root/src/Navigation.tsx
diff options
context:
space:
mode:
authorAnsh Nanda <anshnanda10@gmail.com>2023-05-15 10:42:23 -0700
committerAnsh Nanda <anshnanda10@gmail.com>2023-05-15 10:42:23 -0700
commit50108611600ae2addb3bff4f00562b02f9c35fdf (patch)
treed2c19ce838b0957556d991d87e61471ae4cd9fba /src/Navigation.tsx
parent61ea37ff818ca64cec8e10b3a423ecd22dcf0141 (diff)
downloadvoidsky-50108611600ae2addb3bff4f00562b02f9c35fdf.tar.zst
custom feed screen
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r--src/Navigation.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 26dc9f7ad..d4c992eb6 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -53,6 +53,7 @@ import {MutedAccounts} from 'view/screens/MutedAccounts'
 import {BlockedAccounts} from 'view/screens/BlockedAccounts'
 import {getRoutingInstrumentation} from 'lib/sentry'
 import {SavedFeeds} from './view/screens/SavedFeeds'
+import {CustomFeed} from './view/screens/CustomFeed'
 
 const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
 
@@ -93,6 +94,7 @@ function commonScreens(Stack: typeof HomeTab) {
       <Stack.Screen name="CopyrightPolicy" component={CopyrightPolicyScreen} />
       <Stack.Screen name="AppPasswords" component={AppPasswords} />
       <Stack.Screen name="SavedFeeds" component={SavedFeeds} />
+      <Stack.Screen name="CustomFeed" component={CustomFeed} />
       <Stack.Screen name="MutedAccounts" component={MutedAccounts} />
       <Stack.Screen name="BlockedAccounts" component={BlockedAccounts} />
     </>