blob: df1036f8d5bdbca23525d59b802d536ffb84ead1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Sidebar } from "../components/sidebar";
export default function MainLayout({ children }: { children: React.ReactNode }) {
return (
<div style={{ display: "flex", height: "100vh", backgroundColor: "#0b0b10" }}>
<Sidebar />
<div style={{ flex: 1, minWidth: 0, overflowY: "auto" }}>
{children}
</div>
</div>
);
}
|