|
|
@ -2,14 +2,20 @@ import React from 'react'; |
|
|
|
import { FormattedMessage } from 'react-intl'; |
|
|
|
import { FormattedMessage } from 'react-intl'; |
|
|
|
import PropTypes from 'prop-types'; |
|
|
|
import PropTypes from 'prop-types'; |
|
|
|
|
|
|
|
|
|
|
|
const LoadMore = ({ onClick }) => ( |
|
|
|
class LoadMore extends React.PureComponent { |
|
|
|
<button className='load-more' onClick={onClick}> |
|
|
|
|
|
|
|
<FormattedMessage id='status.load_more' defaultMessage='Load more' /> |
|
|
|
static propTypes = { |
|
|
|
</button> |
|
|
|
onClick: PropTypes.func, |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LoadMore.propTypes = { |
|
|
|
render() { |
|
|
|
onClick: PropTypes.func, |
|
|
|
return ( |
|
|
|
}; |
|
|
|
<button className='load-more' onClick={this.props.onClick}> |
|
|
|
|
|
|
|
<FormattedMessage id='status.load_more' defaultMessage='Load more' /> |
|
|
|
|
|
|
|
</button> |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export default LoadMore; |
|
|
|
export default LoadMore; |
|
|
|