7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
import { DateContextProvider } from '@/context/date';
|
|
import { type PropsWithChildren } from 'react';
|
|
|
|
export default async function Layout({ children }: Readonly<PropsWithChildren>) {
|
|
return <DateContextProvider>{children}</DateContextProvider>;
|
|
}
|