0.1.2 • Published 4 years ago
react-material-notify v0.1.2
react-material-notify
This package can help you to create and display notifications in your React application
The package is tiny, less than 3 KB!
It's in active development stage now. Current plans can be found in Issues
How to install?
npm i react-material-notify --saveor
yarn add react-material-notifyHow to use?
Firstly, you have to pass the top component (e.g. App) to NotificationContainer
(a hook option will be added in next versions)
And you need to call createNotification to show new notification
createNotification signature
createNotification(notification: NotificationType)NotificationType fields
| Field | Type | Description | Default value |
|---|---|---|---|
id? | number or string | ID of the notification | Date.now() |
message | string | Text of the notification | |
level | NotificationLevelType | Level (color) of the notification | |
duration? | number or 'forever' | Time of the notification showing (in ms). Use 'forever' or value <=0 for unlimited showing | 5000 |
type NotificationLevelType = 'info' | 'success' | 'warning' | 'error';Demo
Do you have a bug report or improvement idea?
Please, open the issue! :)