1.0.0 • Published 1 year ago

kozmo-embed-react v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Kozmo Embed React

React library to display kozmo chatbot on your website

Kozmo

Install

npm install kozmo-embed kozmo-embed-react

or

yarn add kozmo-embed kozmo-embed-react

Import

Full Page Chat

import { FullPageChat } from "kozmo-embed-react";

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

Popup Chat

import { BubbleChat } from "kozmo-embed-react";

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

1 year ago