criai-chat-embed-react
v1.0.4
Published
React library to display criai chatbot on your website
Downloads
31
Readme
Criai Chat Embed React
React library to display criai chatbot on your website

Install
npm install criai-chat-embed criai-chat-embed-reactor
yarn add criai-chat-embed criai-chat-embed-reactImport
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" />
);
};