about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/load_more.jsx
blob: f59ff110381c8d9ac7c8f7823a23d54f7a87fc0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { FormattedMessage } from 'react-intl';
import PropTypes from 'prop-types';

const LoadMore = ({ onClick }) => (
  <a href="#" className='load-more' role='button' onClick={onClick}>
    <FormattedMessage id='status.load_more' defaultMessage='Load more' />
  </a>
);

LoadMore.propTypes = {
  onClick: PropTypes.func
};

export default LoadMore;