Files
codexbar-mobile/app/_layout.tsx
T
space ba7d957155
CodexBar Mobile Build / build-android (push) Failing after 1m38s
CodexBar Mobile Build / release (push) Has been skipped
Maximus upgradus
2026-06-24 20:16:34 +02:00

15 lines
446 B
TypeScript

import "../global.css";
import { Stack } from "expo-router";
import { SafeAreaProvider } from "react-native-safe-area-context";
import { StatusBar } from "expo-status-bar";
import "@/lib/notifications"; // registers setNotificationHandler on app start
export default function RootLayout() {
return (
<SafeAreaProvider>
<StatusBar style="light" />
<Stack screenOptions={{ headerShown: false }} />
</SafeAreaProvider>
);
}