about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/load_more.js
blob: 22d9e91c35cfde5dcfc125e8931e2cb3d1498cb1 (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 }) => (
  <button className='load-more' onClick={onClick}>
    <FormattedMessage id='status.load_more' defaultMessage='Load more' />
  </button>
);

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

export default LoadMore;