thub-embed-react
v4.0.10
Published
React library to display thub chatbot on your website
Readme
THub Embed React
React library to display thub chatbot on your website
Install
npm install thub-embed thub-embed-reactor
yarn add thub-embed thub-embed-reactImport
Full Page Chat
import { FullPageChat } from "thub-embed-react";
const App = () => {
return (
<FullPageChat
workflowid="your-workflow-id"
apiHost="http://localhost:3000"
/>
);
};Popup Chat
import { BubbleChat } from "thub-embed-react";
const App = () => {
return (
<BubbleChat workflowid="your-workflow-id" apiHost="http://localhost:3000" />
);
};