import { SidebarDesktop } from '@/components/sidebar-desktop' interface ChatLayoutProps { children: React.ReactNode } export default async function ChatLayout({ children }: ChatLayoutProps) { return (
{/* @ts-ignore */}
{children}
) }