autoflow-embed-react
v1.0.4
Published
React library to display autoflow chatbot on your website
Downloads
3
Readme
AutoFlow Embed React
React library to display autoflow chatbot on your website
Install
npm install autoflow-embed autoflow-embed-react
or
yarn add autoflow-embed autoflow-embed-react
Import
Full Page Chat
import { FullPageChat } from "autoflow-embed-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};
Popup Chat
import { BubbleChat } from "autoflow-embed-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};