chatbot-challenge
v1.0.3
Published
A customizable and responsive React Chatbot Component.
Downloads
3
Readme
React Chatbot Component
A customizable and responsive React Chatbot Component.
Installation
npm install react-chatbot-component
## Usage
```jsx
import React from 'react';
import Chatbot from 'react-chatbot-component';
const MyChatbotApp = () => {
return (
<Chatbot
greeting="Hello! How can I assist you today?"
position="bottom-right"
/>
);
};
export default MyChatbotApp;
## Props
### `greeting` (string, required)
The greeting message displayed when the chatbot is open. You can pass any string as a greeting message to personalize the interaction with your users.
**Example:**
```jsx
<Chatbot greeting="Welcome to our support chat. How may I help you today?" />