Files
fltr-app/app/_layout.tsx
2025-10-01 22:38:22 +02:00

11 lines
224 B
TypeScript

import { Stack } from "expo-router";
import "react-native-reanimated";
export default function RootLayout() {
return (
<Stack>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
</Stack>
);
}