add the config modal

This commit is contained in:
CREDO23 2025-10-22 16:35:15 +02:00 committed by thierryverse
parent 6d34007a26
commit 4c22f4a953
4 changed files with 77 additions and 29 deletions

View file

@ -1,5 +1,9 @@
import ChatPanelView from "./ChatPanelView";
export function ChatPanelContainer() {
return <ChatPanelView />;
interface ChatPanelContainerProps {
chatId: string;
}
export function ChatPanelContainer({ chatId }: ChatPanelContainerProps) {
return <ChatPanelView chatId={chatId} />;
}