@hanzo/embed-react
v1.0.3
Published
React library to display flowise chatbot on your website
Downloads
7
Keywords
Readme
Hanzo Embed React
React library to display flowise chatbot on your website
Install
npm install @hanzo/embed @hanzo/embed-react
or
yarn add @hanzo/embed @hanzo/embed-react
Import
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' />
}