blob: 6bc1ed9d29d23154bdab54f6c828cdda272ab701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import {createStackNavigator} from '@react-navigation/stack';
export type OnboardingStackParams = {
Splash: undefined;
Login: undefined;
InvitationCodeVerification: undefined;
RegistrationOne: undefined;
RegistrationTwo: {phone: string};
RegistrationThree: {firstName: string; lastName: string; phone: string; email: string};
Checkpoint: {username: string; userId: string};
Verification: {phone: string};
ProfileOnboarding: {username: string; userId: string};
SocialMedia: {username: string; userId: string};
};
export const OnboardingStack = createStackNavigator<OnboardingStackParams>();
|