946f16a633
Introduce a full Vite/React UI for exams, auth, materials, images, generation, and export. Adapt backend for Sinbad2IA chat API, bcrypt passwords, CORS on port 5173, and schema migrations.
12 lines
205 B
React
12 lines
205 B
React
import { Outlet } from "react-router-dom";
|
|
import Navbar from "./Navbar";
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<div className="app-shell">
|
|
<Navbar />
|
|
<Outlet />
|
|
</div>
|
|
);
|
|
}
|