Files
mmm-projet/app/layout.tsx
Alexis Leboeuf 92b1729728 Role management not working
I can't make it use the correct context
If someone wants to try it, use this branch
2025-12-13 15:17:38 +01:00

10 lines
189 B
TypeScript

import { Slot } from "expo-router";
import { UserProvider } from "./ContextUser";
export default function Layout() {
return (
<UserProvider>
<Slot />
</UserProvider>
);
}