React library to display flowise chatbot on your website
npm install @bxtech/flowise-embed @bxtech/flowise-embed-react
or
yarn add @bxtech/flowise-embed @bxtech/flowise-embed-react
Full Page Chat
import { FullPageChat } from "@bxtech/flowise-embed-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};
Popup Chat
import { BubbleChat } from "@bxtech/flowise-embed-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};