1.0.14 • Published 3 months ago
cmcts-c-agent-embedding-react v1.0.14
Flowise Embed React
React library to display flowise chatbot on your website
Install
npm install c-agent-embedding c-agent-embedding-react
or
yarn add c-agent-embedding c-agent-embedding-react
Import
Full Page Chat
import { FullPageChat } from "c-agent-embedding-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};
Popup Chat
import { BubbleChat } from "c-agent-embedding-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};