1.0.3 • Published 2 years ago
gococo-embed-react v1.0.3
GoCoCo Embed React
React library to display gococo chatbot on your website
Install
npm install gococo-embed gococo-embed-react
or
yarn add gococo-embed gococo-embed-react
Import
Full Page Chat
import { FullPageChat } from "gococo-embed-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};
Popup Chat
import { BubbleChat } from "gococo-embed-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};