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