0.0.2 • Published 5 months ago

hubility-chat-react v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months 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" />
  );
};
0.0.2

5 months ago

0.0.1

5 months ago