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