mobile-tabungan/app/_layout.tsx

16 lines
382 B
TypeScript

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