14 lines
444 B
JavaScript
14 lines
444 B
JavaScript
import HeaderWithLogo from "@/components/layouts/dashboard/headerWithLogo";
|
|
import HeaderWithSidebar from "@/components/layouts/dashboard/headerWithSidebar";
|
|
import { Stack } from "@mui/material";
|
|
|
|
const Layout = ({ children }) => {
|
|
return (
|
|
<Stack sx={{ width: '100%', height: '100%' }}>
|
|
<HeaderWithLogo />
|
|
<HeaderWithSidebar>{children}</HeaderWithSidebar>
|
|
</Stack>
|
|
);
|
|
};
|
|
export default Layout;
|