12 lines
306 B
JavaScript
12 lines
306 B
JavaScript
import { Stack } from "@mui/material";
|
|
import HeaderBottom from "./HaederBottom";
|
|
|
|
const HeaderWithLogo = () => {
|
|
return (
|
|
<Stack sx={{ width: "100%", position: "fixed", zIndex: 1200, background: "#fff" }}>
|
|
<HeaderBottom />
|
|
</Stack>
|
|
);
|
|
};
|
|
export default HeaderWithLogo;
|