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);
}
}