askia-embed-react
v1.0.0
Published
React library to display askia chatbot on your website
Readme
Askia Embed React
React library to display askia chatbot on your website

Install
npm install askia-embed askia-embed-reactor
yarn add askia-embed askia-embed-reactImport
Full Page Chat
import { FullPageChat } from "askia-embed-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};Popup Chat
import { BubbleChat } from "askia-embed-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};