7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { TelegramProvider } from '@/providers/telegram';
|
|
import { type PropsWithChildren } from 'react';
|
|
|
|
export default async function Layout({ children }: Readonly<PropsWithChildren>) {
|
|
return <TelegramProvider>{children}</TelegramProvider>;
|
|
}
|