about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/load_more.jsx
blob: 1866fc1001bae32f44cc9df99e446bb24a441bb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { FormattedMessage } from 'react-intl';

const loadMoreStyle = {
  display: 'block',
  color: '#616b86',
  textAlign: 'center',
  padding: '15px',
  textDecoration: 'none'
};

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

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

export default LoadMore;