Browse Source

Prevent wasted render in load_more.js (#3402)

closed-social-glitch-2
Nolan Lawson 7 years ago
committed by Eugen Rochko
parent
commit
b5e8994844
1 changed files with 15 additions and 9 deletions
  1. +15
    -9
      app/javascript/mastodon/components/load_more.js

+ 15
- 9
app/javascript/mastodon/components/load_more.js View File

@ -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;

Loading…
Cancel
Save