Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { Outlet } from "react-router-dom"; import CustomContainer from "./components/CustomContainer"; import Sidebar from "./components/Sidebar"; function Layout() { return ( <div className="relative flex h-screen overflow-hidden"> <div className="h-screen border-r border-gray-200 flex"> <Sidebar /> </div> <main className="w-full overflow-y-scroll" style={{ background: "#F8FAFC" }}> <CustomContainer> <Outlet /> </CustomContainer> </main> </div> ); } export default Layout; |