diff options
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/Routes.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx index c426b033..bf9b9fbd 100644 --- a/src/routes/Routes.tsx +++ b/src/routes/Routes.tsx @@ -1,12 +1,14 @@ import React from 'react'; import {createStackNavigator} from '@react-navigation/stack'; -import {Login, Registration, Verification} from '../screens'; +import {Login, Registration, Verification, Profile, Camera} from '../screens/onboarding'; export type RootStackParamList = { Login: undefined; Registration: undefined; Verification: undefined; + Profile: undefined; + Camera: undefined; }; const RootStack = createStackNavigator<RootStackParamList>(); @@ -31,6 +33,11 @@ const Routes: React.FC<RoutesProps> = ({}) => { component={Verification} options={{headerShown: false}} /> + <RootStack.Screen name="Profile" + component={Profile} + options={{headerShown: false}} + /> + <RootStack.Screen name="Camera" component={Camera} /> </RootStack.Navigator> ); }; |
