10 lines
No EOL
298 B
TypeScript
10 lines
No EOL
298 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen name="index" options={{ title: 'Slots' }} />
|
|
<Stack.Screen name="slot-details" options={{ title: 'Slot Details' }} />
|
|
</Stack>
|
|
);
|
|
} |