aboutsummaryrefslogtreecommitdiff
path: root/src/routes/onboarding/OnboardingStackScreen.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-05-07 20:15:18 -0400
committerGitHub <noreply@github.com>2021-05-07 20:15:18 -0400
commit1c3f2c5712ca0c865f5933b3e6b1aff7604e9f35 (patch)
treed912c10dc5efe7ce2fa99423b7c707a44adb39de /src/routes/onboarding/OnboardingStackScreen.tsx
parenteb1a01196ae6a999ac73e146cf5286fddc0454e3 (diff)
parent525678fde244e8e9d3ea373ee8fb93c26ea92be8 (diff)
Merge pull request #405 from grusuTagg/tma823-onboarding-revamp
[TMA-823] Onboarding Revamp
Diffstat (limited to 'src/routes/onboarding/OnboardingStackScreen.tsx')
-rw-r--r--src/routes/onboarding/OnboardingStackScreen.tsx22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/routes/onboarding/OnboardingStackScreen.tsx b/src/routes/onboarding/OnboardingStackScreen.tsx
index 339c3d0d..50fd52d6 100644
--- a/src/routes/onboarding/OnboardingStackScreen.tsx
+++ b/src/routes/onboarding/OnboardingStackScreen.tsx
@@ -1,17 +1,16 @@
import {StackCardInterpolationProps} from '@react-navigation/stack';
import React from 'react';
import {
+ BasicInfoOnboarding,
InvitationCodeVerification,
Login,
- OnboardingStepThree,
- OnboardingStepTwo,
PasswordReset,
PasswordResetRequest,
PasswordVerification,
PhoneVerification,
+ ProfileInfoOnboarding,
WelcomeScreen,
} from '../../screens';
-import OnboardingStepOne from '../../screens/onboarding/OnboardingStepOne';
import {modalStyle} from '../main';
import {OnboardingStack} from './OnboardingStackNavigator';
@@ -44,6 +43,10 @@ const Onboarding: React.FC = () => {
/>
<OnboardingStack.Screen name="WelcomeScreen" component={WelcomeScreen} />
<OnboardingStack.Screen
+ name="BasicInfoOnboarding"
+ component={BasicInfoOnboarding}
+ />
+ <OnboardingStack.Screen
name="PasswordReset"
component={PasswordReset}
options={{
@@ -59,22 +62,13 @@ const Onboarding: React.FC = () => {
}}
/>
<OnboardingStack.Screen
- name="OnboardingStepOne"
- component={OnboardingStepOne}
- />
- <OnboardingStack.Screen
name="PhoneVerification"
component={PhoneVerification}
options={{...modalStyle}}
/>
<OnboardingStack.Screen
- name="OnboardingStepTwo"
- component={OnboardingStepTwo}
- options={{...modalStyle}}
- />
- <OnboardingStack.Screen
- name="OnboardingStepThree"
- component={OnboardingStepThree}
+ name="ProfileInfoOnboarding"
+ component={ProfileInfoOnboarding}
options={{...modalStyle}}
/>
<OnboardingStack.Screen