Project setup
This commit is contained in:
parent
6c45dec07b
commit
95a21d6f50
29 changed files with 12083 additions and 77 deletions
11
components/Layout.tsx
Normal file
11
components/Layout.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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>
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue