ameen-chatbot-app
v1.5.0
Published
## Introduction
Downloads
1
Readme
Chatbot React Component
Introduction
This package provides a React component for embedding a chatbot into your web application. The chatbot is displayed as an iframe, allowing seamless integration into your UI.
Installation
You can install the package via npm:
npm install ameen-chatbot-app
import React from 'react';
import { Chatbot } from 'ameen-chatbot-app';
const App = () => {
return (
<div>
<h1>Welcome to My Website</h1>
<Chatbot chatPageUrl="https://your-chatbot-url.com" />
</div>
);
};
export default App;