@ib-hooks/use-notification
v1.0.3
Published
React Hook to use browser notification easier.
Downloads
2
Readme
@ib-hooks/use-notification
React Hook to use browser notification easier.
Installation
yarn
yarn add @ib-hooks/use-notification
npm
npm i @ib-hooks/use-notification
Usage
import React from "react";
import useNotification from "@ib-hooks/use-notification";
function App() {
const sendNotification = useNotification("Hello!");
return <button onClick={sendNotification}>Send Hello</button>;
}Arguments
| Argument | Type | Description | Required | | ------------ | -------- | --------------------------------------------------------------------------------------- | ------------ | | title | string | The text you want to notice. | yes | | options | object | Reference | no |
Return
| Return value | Type | Description | | ---------------- | -------- | ---------------------------------------------------------------------------- | | Functions | object | If a user grants a permission, notification can be send using this function. |
