Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame contribute delete
187 Bytes
import { ChatInput } from '@/components/chat-input';
export function ChatBox() {
return (
<section className="border-x flex-1">
<ChatInput></ChatInput>
</section>
);
}