19 lines
515 B
TypeScript
19 lines
515 B
TypeScript
// Root layout for Expo Router.
|
|
// Wraps every screen. Place global providers here (Theme, Supabase/Auth context,
|
|
// SafeAreaProvider, GestureHandlerRootView, etc.) once they exist.
|
|
|
|
import { Stack } from 'expo-router';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
|
|
export default function RootLayout() {
|
|
return (
|
|
<>
|
|
<StatusBar style="auto" />
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen name="index" />
|
|
<Stack.Screen name="(app)" />
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|