A lightweight and customizable chatbot component for React Native, developed by TabTree.
- 🚀 Easy integration with your React Native app
- 🔐 Secure authentication using
appName
andtoken
- 🎨 Customizable UI with color themes
- 📡 Real-time chat via WebSocket
npm install @tabtree/react-native-chatbot
## 🚀 Usage
Import and use the `ChatBot` component:
```jsx
import ChatBot from "@tabtree/react-native-chatbot";
const App = () => {
return (
<ChatBot
appName="Aruvi"
token="your-secure-token"
colors={{
primary: "#484583", // Dark background
secondary: "#D4D0FF", // Light background
}}
/>
);
};
export default App;