aboutsummaryrefslogtreecommitdiff
path: root/src/routes/onboarding/OnboardingStack.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/onboarding/OnboardingStack.tsx')
-rw-r--r--src/routes/onboarding/OnboardingStack.tsx17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/routes/onboarding/OnboardingStack.tsx b/src/routes/onboarding/OnboardingStack.tsx
index 33ff51ea..7ff00271 100644
--- a/src/routes/onboarding/OnboardingStack.tsx
+++ b/src/routes/onboarding/OnboardingStack.tsx
@@ -1,7 +1,14 @@
import {createStackNavigator} from '@react-navigation/stack';
-import {VerificationScreenType} from '../../types';
+import {
+ CategorySelectionScreenType,
+ MomentCategoryType,
+ TaggPopupType,
+ UserType,
+ VerificationScreenType,
+} from '../../types';
export type OnboardingStackParams = {
+ WelcomeScreen: undefined;
Login: undefined;
PasswordResetRequest: undefined;
PasswordReset: {
@@ -20,6 +27,14 @@ export type OnboardingStackParams = {
Verification: {id: string; screenType: VerificationScreenType};
ProfileOnboarding: {username: string; userId: string};
SocialMedia: {username: string; userId: string};
+ CategorySelection: {
+ categories: Record<MomentCategoryType, boolean>;
+ screenType: CategorySelectionScreenType;
+ user: UserType;
+ };
+ TaggPopup: {
+ popupProps: TaggPopupType;
+ };
};
export const OnboardingStack = createStackNavigator<OnboardingStackParams>();