@chooks/use-notification
v1.0.0
Published
브라우저 알림이 허용돼있는 경우 알림을 발생시킨다.
Downloads
2
Readme
Usage
브라우저 알림이 허용돼있는 경우 알림을 발생시킨다.
const App = () => {
const triggerNotif = useNotification("Hi there", {
body: "this is option"
});
return (
<div>
<button onClick={triggerNotif}>click this</button>
</div>
);
};