Files
Checkmate/Client/src/Layouts/HomeLayout/index.jsx
T
2024-10-17 12:05:06 +08:00

21 lines
337 B
React

import Sidebar from "../../Components/Sidebar";
import { Outlet } from "react-router";
import { Stack } from "@mui/material";
import "./index.css";
const HomeLayout = () => {
return (
<Stack
className="home-layout"
flexDirection="row"
gap={14}
>
<Sidebar />
<Outlet />
</Stack>
);
};
export default HomeLayout;