MCPcopy Create free account
hub / github.com/OneBitCodeBlog/onebitlife / AllPages

Function AllPages

src/Routes/AllPages.jsx:11–26  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9const Stack = createNativeStackNavigator();
10
11export default function AllPages() {
12 return (
13 <NavigationContainer>
14 <Stack.Navigator
15 screenOptions={{
16 headerShown: false,
17 }}
18 >
19 <Stack.Screen name="Start" component={Start} />
20 <Stack.Screen name="AppExplanation" component={AppExplanation} />
21 <Stack.Screen name="Home" component={Home} />
22 <Stack.Screen name="HabitPage" component={HabitPage} />
23 </Stack.Navigator>
24 </NavigationContainer>
25 );
26}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected