npm.io
1.0.8 • Published 7 years ago

react-notification-bar

Licence
MIT
Version
1.0.8
Deps
1
Size
101 kB
Vulns
0
Weekly
0
Stars
1

react-notification-bar

A React notification bar

alt text

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import NotificationBar from 'react-notification-bar';


let bar = React.createElement(
    NotificationBar,
    {
        message: 'Free Chickens!',
        sound: true,
    }
);

ReactDOM.render(bar, '#notification-bar');