7 lines
267 B
TypeScript

import { ScheduleContextProvider } from '@/context/schedule';
import { type PropsWithChildren } from 'react';
export default async function Layout({ children }: Readonly<PropsWithChildren>) {
return <ScheduleContextProvider>{children}</ScheduleContextProvider>;
}