blob: d40e072841a314b63638ae66edb5939b4f7f1d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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>();
|