eflowai-embed-chat-react
v1.0.3
Published
React library to display eflowai chatbot on your website
Downloads
19
Readme
eflowai Embed React
React library to display eflowai chatbot on your website

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