Files
frontend/src/components/layouts/dashboard/headerWithLogo/index.jsx
AmirHossein Mahmoodi 642a3a48d7 formatting
2025-05-18 16:00:19 +03:30

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;