"use client"; import { ReactNode } from "react"; interface ExampleLayoutProps { chatContent: ReactNode; } export function ExampleLayout({ chatContent, }: ExampleLayoutProps) { return (
{/* Chat Content */}
{chatContent}
); }