npm.io
3.0.12-vendored.4 • Published 2d ago

@instant-ar/apexflow-embed-react-eml

Licence
MIT
Version
3.0.12-vendored.4
Deps
0
Size
1000 kB
Vulns
0
Weekly
0

ApexFlow Embed React

React library to display ApexFlow chatbot on your website

ApexFlow

Install

npm install apexflow-embed @instant-ar/apexflow-embed-react-eml

or

yarn add apexflow-embed @instant-ar/apexflow-embed-react-eml

Import

Full Page Chat

import { FullPageChat } from "@instant-ar/apexflow-embed-react-eml";

const App = () => {
  return (
    <FullPageChat
      chatflowid="your-chatflow-id"
      apiHost="http://localhost:3000"
    />
  );
};

Popup Chat

import { BubbleChat } from "@instant-ar/apexflow-embed-react-eml";

const App = () => {
  return (
    <BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
  );
};