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