2022-12-02 10:55:56 +00:00
|
|
|
import { Grid } from "@mui/material";
|
|
|
|
|
import { Sidebar } from "./Sidebar";
|
|
|
|
|
|
|
|
|
|
export const Layout = ({ children }) => (
|
|
|
|
|
<Grid container direction="row">
|
|
|
|
|
<Sidebar open />
|
2022-12-14 13:24:50 +01:00
|
|
|
<Grid item sx={{ ml: "270px", width: "100%", height: "100vh" }}>
|
2022-12-02 10:55:56 +00:00
|
|
|
{children}
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
);
|