MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / ChatContainer

Function ChatContainer

frontend/src/components/Chat/ChatContainer.tsx:5–16  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import InputArea from './InputArea';
4
5const 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
18export default ChatContainer;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected