import { useSidebar } from './Sidebar'; import Sidebar from './Sidebar'; interface PageLayoutProps { children: React.ReactNode; activePath?: string; } const PageLayout = ({ children, activePath = '/' }: PageLayoutProps) => { const { isCollapsed } = useSidebar(); return (
{children}
); }; export default PageLayout;