React library to display texperts chatbot on your website
npm install texperts-embed texperts-embed-react
or
yarn add texperts-embed texperts-embed-react
Full Page Chat
import { FullPageChat } from "texperts-embed-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};
Popup Chat
import { BubbleChat } from "texperts-embed-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};