0
0
Fork 0

Change anchor to button element (#3321)

Fix warning for ESLint (jsx-a11y/href-no-hash).
This commit is contained in:
Yamagishi Kazutoshi 2017-05-26 21:10:37 +09:00 committed by Eugen Rochko
parent 2531c5953b
commit 4b11675bdc
4 changed files with 43 additions and 22 deletions

View file

@ -22,7 +22,7 @@ class Button extends React.PureComponent {
handleClick = (e) => {
if (!this.props.disabled) {
this.props.onClick();
this.props.onClick(e);
}
}

View file

@ -3,9 +3,9 @@ import { FormattedMessage } from 'react-intl';
import PropTypes from 'prop-types';
const LoadMore = ({ onClick }) => (
<a href="#" className='load-more' role='button' onClick={onClick}>
<button className='load-more' onClick={onClick}>
<FormattedMessage id='status.load_more' defaultMessage='Load more' />
</a>
</button>
);
LoadMore.propTypes = {