SurfSense/surfsense_web/components/chat_v2/ChatMain.tsx

11 lines
270 B
TypeScript

"use client";
import { ChatSection, ChatHandler } from "@llamaindex/chat-ui";
interface ChatMainProps {
handler: ChatHandler;
}
export default function ChatMain({ handler }: ChatMainProps) {
return <ChatSection handler={handler} className="flex h-full" />;
}