1.0.6 • Published 5 months ago

codenula-embed-react v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

Codenula Embed React

React library to display flowise chatbot on your website

Codenula

Install

npm install codenula-embed codenula-embed-react

or

yarn add codenula-embed codenula-embed-react

Import

Full Page Chat

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

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

Popup Chat

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

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

5 months ago