12 lines
324 B
TypeScript
12 lines
324 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 }} />
|
|
</GestureHandlerRootView>
|
|
);
|
|
}
|