|
@@ -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>
|