Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { Outlet } from "react-router";
|
||||
import { Header } from "./Header";
|
||||
import { Footer } from "./Footer";
|
||||
|
||||
export function Layout() {
|
||||
return (
|
||||
<div className="min-h-screen flex flex-col">
|
||||
<Header />
|
||||
<main className="flex-1">
|
||||
<Outlet />
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user