-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathApp.js
More file actions
18 lines (16 loc) · 655 Bytes
/
Copy pathApp.js
File metadata and controls
18 lines (16 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from "react";
import NewNouveauDesing from "./pages/NewNouveauDesign";
import PageAccueil from "./pages/PageAccueil";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
const Stack = createNativeStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator screenOptions={{ headerShown: false }}>
<Stack.Screen name="PageAcceuil" component={PageAccueil} />
<Stack.Screen name="NewNouveauDesing" component={NewNouveauDesing} />
</Stack.Navigator>
</NavigationContainer>
);
}