File size: 540 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Reader Update Notice

A little pill that is used to notify the user when new posts are available.

## Usage

```jsx
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