ChatBox React Component
The ChatBox React Component is a customizable chat interface that can be easily integrated into your React applications. It provides a sleek and modern interface for users to interact with each other, making communication seamless and intuitive.
Features
- Customizable Positioning: Choose where the ChatBox appears on the screen, whether it's at the bottom right, bottom left.
- Greeting Message: Welcome users with a customizable greeting message to set the tone for their chat experience.
- Responsive Design: The ChatBox adapts to different screen sizes, ensuring a consistent user experience across devices.
- Easy Integration: Simply import the ChatBox component into your React application and configure it with your desired settings.
Installation
You can install the ChatBox React Component via npm:
Usage
import React from "react";
import ChatBox from "@helya_ze/chatbox";
function App() {
return (
<div>
<ChatBox position="botton-right" greetingMessage="hello" />
</div>
);
}
export default App;