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