(props)
| 26 | |
| 27 | class NavLink extends React.Component { |
| 28 | constructor(props) { |
| 29 | super(props); |
| 30 | |
| 31 | this.onClick = this.onClick.bind(this); |
| 32 | } |
| 33 | |
| 34 | onClick(e) { |
| 35 | if (this.props.disabled) { |
nothing calls this directly
no outgoing calls
no test coverage detected