2026-04-18 12:01:53 +07:00
|
|
|
import { Stack } from 'expo-router';
|
|
|
|
|
import { StatusBar } from 'expo-status-bar';
|
|
|
|
|
|
|
|
|
|
export default function RootLayout() {
|
|
|
|
|
return (
|
2026-04-18 12:23:11 +07:00
|
|
|
<>
|
2026-04-18 12:01:53 +07:00
|
|
|
<Stack>
|
|
|
|
|
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
|
|
|
|
|
</Stack>
|
|
|
|
|
<StatusBar style="auto" />
|
2026-04-18 12:23:11 +07:00
|
|
|
</>
|
2026-04-18 12:01:53 +07:00
|
|
|
);
|
2026-04-18 12:23:11 +07:00
|
|
|
}
|