import { ChatInput } from '@/components/chat-input'; | |
export function ChatBox() { | |
return ( | |
<section className="border-x flex-1"> | |
<ChatInput></ChatInput> | |
</section> | |
); | |
} | |
import { ChatInput } from '@/components/chat-input'; | |
export function ChatBox() { | |
return ( | |
<section className="border-x flex-1"> | |
<ChatInput></ChatInput> | |
</section> | |
); | |
} | |