about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/load_more.js
blob: 36dae79af876534272b0de9aa9adc755ac6aa068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';
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;