Simple web notifications component for React
npm install react-web-notificationsSimple web notifications component for React

```
$ npm install react-web-notifications --save
`js`
import WebNotification from 'react-web-notifications'
`js
icon="path/to/image.jpg"
body="This is a web notification"
timeout={9000}
onClickFn={ () => window.open('http://www.google.com/', '_blank') } // open your own site on notification click
/>
``
| Prop | Type | Required |
|-------|--------|----------|
| title | string | true |
| icon | string | false |
| body | string | false |
| timeout | number | false |
| onClickFn | function | false |
MIT