add header and sidebar sample
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import {Box} from "@mui/material";
|
||||
|
||||
const HeaderWithLogo = ({headerHeight}) => {
|
||||
return (<>
|
||||
<Box sx={{position: 'fixed', height: headerHeight.header1, top: 0}}>header1</Box>
|
||||
<Box sx={{position: 'fixed', height: headerHeight.header2, top: headerHeight.header1}}>header2</Box>
|
||||
</>)
|
||||
}
|
||||
export default HeaderWithLogo
|
||||
Reference in New Issue
Block a user