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

Function HomePage

src/Routes/HomePage.jsx:10–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected