mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-03 02:59:09 +00:00
11 lines
270 B
TypeScript
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" />;
|
|
}
|