Files
hipmi-mobile/app/_layout.tsx
Bagasbanuna02 4835d51f35 resourcing tabs
deskripsi:
- coba tabs
2025-06-24 10:45:42 +08:00

16 lines
605 B
TypeScript

import { Stack } from "expo-router";
export default function RootLayout() {
return (
<Stack>
<Stack.Screen name="index" options={{ headerShown: false }} />
<Stack.Screen name="verification" options={{ headerShown: false }} />
<Stack.Screen name="register" options={{ headerShown: false }} />
<Stack.Screen name="(application)" options={{ headerShown: false }} />
{/* <Stack.Screen name="(application)/home/index" options={{ title: "Home" }} />
<Stack.Screen name="(application)/(katalog)/index" options={{ title: "Katalog" }} /> */}
</Stack>
);
}