diff --git a/src/states/Dashboard/components/Header/Header.jsx b/src/states/Dashboard/components/Header/Header.jsx new file mode 100644 index 0000000..22cb24e --- /dev/null +++ b/src/states/Dashboard/components/Header/Header.jsx @@ -0,0 +1,18 @@ +import {AppBar, IconButton, Toolbar, Typography} from "@mui/material"; +import {Menu} from "@mui/icons-material"; + +const drawerWidth = 240; + +export const Header = () => { + return ( + + + {}} + sx={{ mr: 2, display: { sm: 'none' } }}> + + + Home + + + ) +} \ No newline at end of file