@hanzo/embed-react
v1.0.3
Published
React library to display flowise chatbot on your website
Downloads
37
Keywords
Readme
Hanzo Embed React
React library to display flowise chatbot on your website

Install
npm install @hanzo/embed @hanzo/embed-reactor
yarn add @hanzo/embed @hanzo/embed-reactImport
Full Page Chat
import { FullPageChat } from '@hanzo/embed-react'
const App = () => {
return <FullPageChat chatflowid='your-chatflow-id' apiHost='http://localhost:3000' />
}Popup Chat
import { BubbleChat } from '@hanzo/embed-react'
const App = () => {
return <BubbleChat chatflowid='your-chatflow-id' apiHost='http://localhost:3000' />
}