mirror of
https://github.com/Sosokker/chefhai.git
synced 2025-12-19 14:04:08 +01:00
26 lines
624 B
TypeScript
26 lines
624 B
TypeScript
import { Stack } from "expo-router";
|
|
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
|
import "../global.css";
|
|
|
|
export default function RootLayout() {
|
|
return (
|
|
<GestureHandlerRootView style={{ flex: 1 }}>
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen
|
|
name="(tabs)"
|
|
options={{
|
|
headerShown: false,
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="recipe-detail"
|
|
options={{
|
|
headerShown: false,
|
|
presentation: "card",
|
|
}}
|
|
/>
|
|
</Stack>
|
|
</GestureHandlerRootView>
|
|
);
|
|
}
|