debug header flow by mohammad

This commit is contained in:
2024-01-30 13:48:38 +03:30
parent 21c5e5919b
commit d89e86813d
3 changed files with 18 additions and 22 deletions

View File

@@ -1,9 +1,9 @@
import {Box} from "@mui/material";
import {Box, Stack} 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>
</>)
const HeaderWithLogo = () => {
return (<Stack>
<Box>header1</Box>
<Box>header2</Box>
</Stack>)
}
export default HeaderWithLogo