aboutsummaryrefslogtreecommitdiff
path: root/src/routes/Routes.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/Routes.tsx')
-rw-r--r--src/routes/Routes.tsx13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx
index bf9b9fbd..98aeff8d 100644
--- a/src/routes/Routes.tsx
+++ b/src/routes/Routes.tsx
@@ -1,7 +1,13 @@
import React from 'react';
import {createStackNavigator} from '@react-navigation/stack';
-import {Login, Registration, Verification, Profile, Camera} from '../screens/onboarding';
+import {
+ Login,
+ Registration,
+ Verification,
+ Profile,
+ Camera,
+} from '../screens/onboarding';
export type RootStackParamList = {
Login: undefined;
@@ -33,8 +39,9 @@ const Routes: React.FC<RoutesProps> = ({}) => {
component={Verification}
options={{headerShown: false}}
/>
- <RootStack.Screen name="Profile"
- component={Profile}
+ <RootStack.Screen
+ name="Profile"
+ component={Profile}
options={{headerShown: false}}
/>
<RootStack.Screen name="Camera" component={Camera} />