2017-05-03 10:04:16 +10:00
|
|
|
import React from 'react';
|
2017-01-31 04:04:15 +11:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-31 04:04:15 +11:00
|
|
|
|
|
|
|
const LoadMore = ({ onClick }) => (
|
2017-05-26 22:10:37 +10:00
|
|
|
<button className='load-more' onClick={onClick}>
|
2017-01-31 04:04:15 +11:00
|
|
|
<FormattedMessage id='status.load_more' defaultMessage='Load more' />
|
2017-05-26 22:10:37 +10:00
|
|
|
</button>
|
2017-01-31 04:04:15 +11:00
|
|
|
);
|
|
|
|
|
|
|
|
LoadMore.propTypes = {
|
2017-05-21 01:31:47 +10:00
|
|
|
onClick: PropTypes.func,
|
2017-01-31 04:04:15 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
export default LoadMore;
|