16 lines
330 B
TypeScript
16 lines
330 B
TypeScript
import { Outlet } from "react-router";
|
|
import { Navbar } from "./components/Navbar";
|
|
import { Footer } from "./components/Footer";
|
|
|
|
export default function Root() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main style={{display: "flex", justifyContent: "center"}}>
|
|
<Outlet />
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|