@trti/embed-react
v3.0.4
Published
React library to display AI chatbot on your website
Readme
ZogicAI Embed React
React library to display ZogicAI chatbot on your website
Install
npm install @trti/embed @trti/embed-reactor
yarn add @trti/embed @trti/embed-reactImport
Full Page Chat
import { FullPageChat } from "@trti/embed-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};Popup Chat
import { BubbleChat } from "@trti/embed-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};