🎨 Remise au propre

This commit is contained in:
2026-06-10 16:24:37 -04:00
parent 9318d1c28b
commit 4e1a0b24f4
11 changed files with 37 additions and 624 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Outlet } from 'react-router-dom';
import Navbar from './Navbar';
export default function Layout() {
return (
<>
<Navbar />
<Outlet />
</>
);
}