SurfSense/surfsense_web/components/chat/ChatPannel/ChatPannelContainer.tsx
2025-11-06 21:52:45 +02:00

9 lines
221 B
TypeScript

import ChatPanelView from "./ChatPanelView";
interface ChatPanelContainerProps {
chatId: string;
}
export function ChatPanelContainer({ chatId }: ChatPanelContainerProps) {
return <ChatPanelView chatId={chatId} />;
}