import type { ReactNode } from "react"; interface ChatLayoutProps { sidebar: ReactNode; children: ReactNode; } export default function ChatLayout({ sidebar, children }: ChatLayoutProps) { return (
{sidebar}
{children}
); }