We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bda42aa commit e01df49Copy full SHA for e01df49
src/routes/Stacks/MainStack.tsx
@@ -0,0 +1,16 @@
1
+import * as React from 'react';
2
+import { NavigationContainer } from '@react-navigation/native';
3
+import { createNativeStackNavigator } from '@react-navigation/native-stack';
4
+import Home from '../../Screens/HomeScreen';
5
+
6
+const Stack = createNativeStackNavigator();
7
8
+export default function Routes() {
9
+ return (
10
+ <NavigationContainer>
11
+ <Stack.Navigator>
12
+ <Stack.Screen name="Home" component={Home} />
13
+ </Stack.Navigator>
14
+ </NavigationContainer>
15
+ );
16
+}
0 commit comments