visuddhinanda пре 6 месеци
родитељ
комит
7f63199fb1
1 измењених фајлова са 11 додато и 1 уклоњено
  1. 11 1
      dashboard-v4/dashboard/src/pages/nut/index.tsx

+ 11 - 1
dashboard-v4/dashboard/src/pages/nut/index.tsx

@@ -4,6 +4,7 @@ import HeadBar from "../../components/library/HeadBar";
 import AIChatComponent from "../../components/chat/AiChat";
 import AIChatComponent from "../../components/chat/AiChat";
 import { Content } from "antd/lib/layout/layout";
 import { Content } from "antd/lib/layout/layout";
 import TreeText from "../../components/article/TreeText";
 import TreeText from "../../components/article/TreeText";
+import { ChatContainer } from "../../components/chat/ChatContainer";
 
 
 const Widget = () => {
 const Widget = () => {
   return (
   return (
@@ -16,7 +17,16 @@ const Widget = () => {
           rootId="140-92"
           rootId="140-92"
           channelsId={["7fea264d-7a26-40f8-bef7-bc95102760fb"]}
           channelsId={["7fea264d-7a26-40f8-bef7-bc95102760fb"]}
         />
         />
-        <AIChatComponent />
+        <div
+          style={{
+            backgroundColor: "white",
+            color: "black",
+            border: "2px solid red",
+            margin: 10,
+          }}
+        >
+          <ChatContainer chatId={"123"} />
+        </div>
       </Content>
       </Content>
       <FooterBar />
       <FooterBar />
     </div>
     </div>