mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-04-25 02:18:21 -05:00
21 lines
337 B
React
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;
|