This repository has been archived on 2026-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Cyrene/frontend/web/src/components/chat/ChatContainer.tsx
T
2026-05-16 08:26:56 +08:00

9 lines
236 B
TypeScript

import { useChat } from '@/hooks/useChat';
import { MessageList } from './MessageList';
export function ChatContainer() {
const { messages, isTyping } = useChat();
return <MessageList messages={messages} isTyping={isTyping} />;
}