2024-12-23 17:36:29 +03:00

7 lines
249 B
TypeScript

import { Root as TelegramRoot } from '@/components/telegram';
import { type PropsWithChildren } from 'react';
export default async function RootLayout({ children }: Readonly<PropsWithChildren>) {
return <TelegramRoot>{children}</TelegramRoot>;
}