react-chatbot-component
v1.32.0
Published
A customizable chatbot for React applications
Downloads
5
Readme
My Chatbot Package
A simple React chatbot component that developers can easily integrate into their websites to help users ask questions related to the website.
Installation
npm install my-chatbot-package
yarn add my-chatbot-package
import React from 'react';
import { Chatbot } from 'my-chatbot-package';
const App = () => {
return (
<div>
<Chatbot apiKey="YOUR_API_KEY" bearerToken="YOUR_BEARER_TOKEN" />
</div>
);
};
export default App;