Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified

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 available
  • onClick - a callback to call when the notice is cliced on