Skip to content

Latest commit

 

History

History

react-notification-hook

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

@21kb/react-notification-hook

React hook to use the Notifications API

Install

npm

npm install --save @21kb/react-notification-hook

Yarn

yarn add @21kb/react-notification-hook

Usage

import useNotification from '@21kb/react-notification-hook';

const Component = () => {
  const notify = useNotification({
    title: '💡 Test notification!',
    options: {
      dir: 'rtl',
    }
  });

  return (
    <button onClick={notify()}>Notify me!</button>
  );
};

NOTE: useNotification assumes the user has already granted permissions.

License

MIT