layout + app

This commit is contained in:
m
2026-09-09 18:28:08 +02:00
parent 19af7d4bed
commit 45cffb15c3
6 changed files with 1424 additions and 81 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Stack } from 'expo-router';
import { AuthProvider } from '../context/AuthContext';
export default function RootLayout() {
return (
<AuthProvider>
<Stack />
</AuthProvider>
);
}