An open API service indexing awesome lists of open source software.

https://github.com/FlowiseAI/FlowiseEmbedReact


https://github.com/FlowiseAI/FlowiseEmbedReact

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

        

# Flowise Embed React

React library to display flowise chatbot on your website

![Flowise](https://github.com/FlowiseAI/FlowiseChatEmbed/blob/main/images/ChatEmbed.gif?raw=true)

## Install

```bash
npm install flowise-embed flowise-embed-react
```

or

```bash
yarn add flowise-embed flowise-embed-react
```

## Import

Full Page Chat

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

const App = () => {
return (

);
};
```

Popup Chat

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

const App = () => {
return (

);
};
```