"add index.js"

This commit is contained in:
yenminh269 2025-10-19 08:17:22 -05:00
commit 3f893e71b0
4 changed files with 445 additions and 146 deletions

View file

@ -31,9 +31,9 @@ export default function ChatLayout() {
return (
<div className="flex flex-col flex-start w-full max-w-3xl gap-4 p-4">
<ChatHeader />
<ChatHeader />
<ChatWindow messages={messages} />
<MessageInput onSend={handleSend} onDeleteAll={handleDeleteAll} />
<MessageInput onSend={handleSend} onDeleteAll={handleDeleteAll}/>
</div>
);
}