https://github.com/FlowiseAI/FlowiseEmbedReact
https://github.com/FlowiseAI/FlowiseEmbedReact
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/FlowiseAI/FlowiseEmbedReact
- Owner: FlowiseAI
- Created: 2023-06-25T18:44:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T11:47:08.000Z (8 months ago)
- Last Synced: 2024-11-24T19:55:56.480Z (7 months ago)
- Language: TypeScript
- Size: 77.1 KB
- Stars: 52
- Watchers: 1
- Forks: 71
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flowise Embed React
React library to display flowise chatbot on your website

## 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 (
);
};
```