b9fe2b4
1
2
3
4
5
6
7
8
9
10
import { ChatInput } from '@/components/chat-input'; export function ChatBox() { return ( <section className="border-x flex-1"> <ChatInput></ChatInput> </section> ); }