// layout/MainLayout.jsx import Sidebar from 'Frontend/components/Sidebar'; import { Outlet } from 'react-router-dom'; const MainLayout = () => (
{/* This renders the nested route content */}
); export default MainLayout;