10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
// Authenticated app group layout.
|
|
// Gate on session: if no session, redirect to `/`.
|
|
// Add tab bar / drawer nav here once we have more than one screen.
|
|
|
|
import { Stack } from 'expo-router';
|
|
|
|
export default function AppLayout() {
|
|
return <Stack screenOptions={{ headerShown: true }} />;
|
|
}
|