Files
calchat/app/_layout.tsx
2025-11-25 20:52:53 +01:00

7 lines
162 B
TypeScript

import { Stack } from "expo-router";
import "../global.css";
export default function RootLayout() {
return <Stack screenOptions={{ headerShown: false }} />;
}