14 lines
290 B
TypeScript
14 lines
290 B
TypeScript
|
|
import { Outlet } from "react-router-dom";
|
||
|
|
import Sidebar from "./Sidebar";
|
||
|
|
|
||
|
|
export default function AppLayout() {
|
||
|
|
return (
|
||
|
|
<div className="flex h-screen">
|
||
|
|
<Sidebar />
|
||
|
|
<main className="flex-1 overflow-y-auto bg-gray-50">
|
||
|
|
<Outlet />
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|