link-stack/components/Layout.tsx
2022-12-02 10:55:56 +00:00

11 lines
285 B
TypeScript

import { Grid } from "@mui/material";
import { Sidebar } from "./Sidebar";
export const Layout = ({ children }) => (
<Grid container direction="row">
<Sidebar open />
<Grid item sx={{ ml: "300px", width: "100%", height: "100vh" }}>
{children}
</Grid>
</Grid>
);