-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.tsx
71 lines (61 loc) · 1.28 KB
/
types.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* Learn more about using TypeScript with React Navigation:
* https://reactnavigation.org/docs/typescript/
*/
export type RootStackParamList = {
Login: undefined;
NotFound: undefined;
};
export type BottomTabParamList = {
TabOne: undefined;
TabTwo: undefined;
};
export type TabOneParamList = {
TabOneScreen: undefined;
};
export type TabTwoParamList = {
TabTwoScreen: undefined;
};
export type LoginParamList = {
Login: undefined;
Signup: undefined;
Onboarding: undefined;
Test: undefined;
}
export type OnboardingParamList = {
One: undefined;
Two: undefined;
Three: undefined;
Choice: undefined;
Business: undefined;
Customer: undefined;
}
export type BusinessWizardParamList = {
Details: undefined;
Services: undefined;
Location: undefined;
Specialty: undefined;
AllSet: undefined;
Business: undefined;
}
export type CustomerWizardParamList = {
Details: undefined;
Location: undefined;
Interests: undefined;
Liked: undefined;
AllSet: undefined;
Customer: undefined;
}
export type BusinessParamList = {
Home: undefined;
Liked: undefined;
Notification: undefined;
Profile: undefined;
}
export type CustomerParamList = {
Home: undefined;
Liked: undefined;
Tinder: undefined;
Notification: undefined;
Profile: undefined;
}