15 lines
282 B
TypeScript
Raw Normal View History

2025-02-05 07:54:24 +07:00
import { ChatFloatingButton } from "@/components/chat-floating-button";
interface LayoutProps {
children: React.ReactNode;
}
export default async function Layout({ children }: LayoutProps) {
return (
<>
{children}
{/* <ChatFloatingButton /> */}
</>
);
}