mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-29 19:06:24 +02:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import ChatPanelView from "./ChatPanelView";
|
|
|
|
interface ChatPanelContainerProps {
|
|
chatId: string;
|
|
}
|
|
|
|
export function ChatPanelContainer({ chatId }: ChatPanelContainerProps) {
|
|
return <ChatPanelView chatId={chatId} />;
|
|
}
|