15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
import { MainLayout } from "@/components/templates/main-layout";
|
|
import { ManagerProvider } from "@/lib/manager-context";
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<MainLayout>
|
|
<ManagerProvider>{children}</ManagerProvider>
|
|
</MainLayout>
|
|
);
|
|
}
|