https://github.com/flowiseai/flowiseembedreact
https://github.com/flowiseai/flowiseembedreact
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flowiseai/flowiseembedreact
- Owner: FlowiseAI
- Created: 2023-06-25T18:44:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-07T21:12:07.000Z (about 1 year ago)
- Last Synced: 2025-03-29T14:12:35.123Z (11 months ago)
- Language: TypeScript
- Size: 19.5 KB
- Stars: 66
- Watchers: 1
- Forks: 84
- 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 (
);
};
```