()
| 8 | const Stack = createNativeStackNavigator(); |
| 9 | |
| 10 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected