@web_coder25/react-lite-toast
v1.0.5
Published
Lightweight React toast notification library
Downloads
339
Readme
🍞 React Lite Toast
A lightweight, fast, and easy-to-use toast notification library for React.
No external dependencies. Clean API. Perfect for small to medium projects.
✨ Features
- 🚀 Very lightweight
- 🎨 Clean & modern UI
- ⏱ Auto dismiss
- 📦 No dependencies
- ⚛️ Works with all React apps
- 🔔 Simple API (
toast.success())
📦 Installation
npm install @web_coder25/react-lite-toast
## Usage
```jsx
import { ToastProvider, toast } from "react-lite-toast";
function App() {
return (
<ToastProvider>
<button onClick={() => toast.success("Saved!")}>Show Toast</button>
</ToastProvider>
);
}