Reader Update Notice
A little pill that is used to notify the user when new posts are available.
Usage
import UpdateNotice from 'calypso/reader/update-notice';
class MyComponent extends React.Component {
constructor() {
super();
this.handleNoticeClick = function () {
/* do something */
};
}
render() {
return <UpdateNotice count={ 5 } onClick={ this.handleNoticeClick } />;
}
}
Props
count- the number of updates that are availableonClick- a callback to call when the notice is cliced on