()
| 3 | import InputArea from './InputArea'; |
| 4 | |
| 5 | const ChatContainer: React.FC = () => { |
| 6 | return ( |
| 7 | <div className="flex flex-col h-full"> |
| 8 | <div className="border-b border-border p-4"> |
| 9 | <h2 className="text-lg font-semibold">AI Assistant</h2> |
| 10 | </div> |
| 11 | |
| 12 | <MessageList /> |
| 13 | <InputArea /> |
| 14 | </div> |
| 15 | ); |
| 16 | }; |
| 17 | |
| 18 | export default ChatContainer; |
nothing calls this directly
no outgoing calls
no test coverage detected