Skip to content
Snippets Groups Projects
Commit b5e89948 authored by Nolan Lawson's avatar Nolan Lawson Committed by Eugen Rochko
Browse files

Prevent wasted render in load_more.js (#3402)

parent 4bd327a0
No related branches found
No related tags found
No related merge requests found
......@@ -2,14 +2,20 @@ import React from 'react';
import { FormattedMessage } from 'react-intl';
import PropTypes from 'prop-types';
const LoadMore = ({ onClick }) => (
<button className='load-more' onClick={onClick}>
<FormattedMessage id='status.load_more' defaultMessage='Load more' />
</button>
);
LoadMore.propTypes = {
onClick: PropTypes.func,
};
class LoadMore extends React.PureComponent {
static propTypes = {
onClick: PropTypes.func,
}
render() {
return (
<button className='load-more' onClick={this.props.onClick}>
<FormattedMessage id='status.load_more' defaultMessage='Load more' />
</button>
);
}
}
export default LoadMore;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment