9 lines
No EOL
227 B
TypeScript
9 lines
No EOL
227 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen name="[id]" options={{ title: 'Product Detail' }} />
|
|
</Stack>
|
|
);
|
|
} |