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.tsx40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/routes/onboarding/OnboardingStack.tsx b/src/routes/onboarding/OnboardingStack.tsx
deleted file mode 100644
index 7ff00271..00000000
--- a/src/routes/onboarding/OnboardingStack.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-import {createStackNavigator} from '@react-navigation/stack';
-import {
- CategorySelectionScreenType,
- MomentCategoryType,
- TaggPopupType,
- UserType,
- VerificationScreenType,
-} from '../../types';
-
-export type OnboardingStackParams = {
- WelcomeScreen: undefined;
- Login: undefined;
- PasswordResetRequest: undefined;
- PasswordReset: {
- value: string;
- };
- InvitationCodeVerification: undefined;
- RegistrationOne: undefined;
- RegistrationTwo: {phone: string};
- RegistrationThree: {
- firstName: string;
- lastName: string;
- phone: string;
- email: string;
- };
- Checkpoint: {username: string; userId: string};
- 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>();