eflowai-embed-chat-react
v1.0.3
Published
React library to display eflowai chatbot on your website
Downloads
5
Readme
eflowai Embed React
React library to display eflowai chatbot on your website
Install
npm install eflowai-embed eflowai-embed-react
or
yarn add eflowai-embed eflowai-embed-react
Import
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" />
);
};