The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
352 B

  1. import { FormattedMessage } from 'react-intl';
  2. import PropTypes from 'prop-types';
  3. const LoadMore = ({ onClick }) => (
  4. <a href="#" className='load-more' role='button' onClick={onClick}>
  5. <FormattedMessage id='status.load_more' defaultMessage='Load more' />
  6. </a>
  7. );
  8. LoadMore.propTypes = {
  9. onClick: PropTypes.func
  10. };
  11. export default LoadMore;