7 lines
249 B
TypeScript
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>;
|
|
}
|