mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
7d7db8977b
Port d27216dc46
to glitch-soc
24 lines
572 B
JavaScript
24 lines
572 B
JavaScript
import PropTypes from 'prop-types';
|
|
import { PureComponent } from 'react';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
export default class LoadPending extends PureComponent {
|
|
|
|
static propTypes = {
|
|
onClick: PropTypes.func,
|
|
count: PropTypes.number,
|
|
};
|
|
|
|
render() {
|
|
const { count } = this.props;
|
|
|
|
return (
|
|
<button className='load-more load-gap' onClick={this.props.onClick}>
|
|
<FormattedMessage id='load_pending' defaultMessage='{count, plural, one {# new item} other {# new items}}' values={{ count }} />
|
|
</button>
|
|
);
|
|
}
|
|
|
|
}
|