13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import { Outlet } from "react-router-dom";
|
|
import Navbar from "./Navbar/Navbar";
|
|
|
|
|
|
export default function Layout() {
|
|
|
|
return (
|
|
<>
|
|
<Navbar isLoggedIn={true} />
|
|
<Outlet />
|
|
</>
|
|
);
|
|
} |