texperts-embed-react
v3.0.3
Published
React library to display texperts chatbot on your website
Readme
texperts Embed React
React library to display texperts chatbot on your website

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