mobile-tabungan/app/_layout.tsx

16 lines
382 B
TypeScript
Raw Normal View History

2026-04-18 15:46:38 +07:00
import { Stack } from "expo-router";
import { StatusBar } from "expo-status-bar";
export default function RootLayout() {
return (
2026-04-18 15:46:38 +07:00
<>
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="(tabs)" />
<Stack.Screen name="add-income" />
<Stack.Screen name="add-expense" />
</Stack>
2026-04-18 15:46:38 +07:00
<StatusBar style="auto" />
2026-04-18 15:46:38 +07:00
</>
);
2026-04-18 15:46:38 +07:00
}