mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-08 07:12:39 +02:00
add the config modal
This commit is contained in:
parent
6d34007a26
commit
4c22f4a953
4 changed files with 77 additions and 29 deletions
|
|
@ -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} />;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue