about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/load_more.js
blob: 21201138699a8f54c875f032c4bc43b910a559d3 (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;