import { ReactNode } from "react"; import { AppSidebar } from "./AppSidebar"; interface MainLayoutProps { children: ReactNode; } export function MainLayout({ children }: MainLayoutProps) { return (
{children}
); }