1.0.6 • Published 1 year ago

flowise-embed-react v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Flowise Embed React

React library to display flowise chatbot on your website

Flowise

Install

npm install flowise-embed flowise-embed-react

or

yarn add flowise-embed flowise-embed-react

Import

Full Page Chat

import { FullPageChat } from "flowise-embed-react";

const App = () => {
  return (
    <FullPageChat
      chatflowid="your-chatflow-id"
      apiHost="http://localhost:3000"
    />
  );
};

Popup Chat

import { BubbleChat } from "flowise-embed-react";

const App = () => {
  return (
    <BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
  );
};