react-push-notifications
v1.0.4
Published
Customizable notify component for react.
Downloads
57
Maintainers
Readme
React Push Notifications
Simple and customizable push notifications.
import { notify, NotifyContainer, Colors } from "react-push-notifications";
import "react-push-notifications/notify.css";
export default function Login() {
const handleClick = () => notify("Clicked Button!", 4000, Colors.gray[300], "#202020", Colors.green[500]);
return (
<button onClick={handleClick}>Click me!</button>
)
};