10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import React from "react";
|
|
import { TelegramChatProvider } from "@/hooks/use-telegram-chat";
|
|
|
|
export default function AccountLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <TelegramChatProvider>{children}</TelegramChatProvider>;
|
|
}
|