(e)
| 22 | }, |
| 23 | |
| 24 | checkedChange(e){ |
| 25 | const {onChange, value} = this.props; |
| 26 | this.setState({ |
| 27 | checked: e.target.checked |
| 28 | }); |
| 29 | if(onChange) onChange(e, value); |
| 30 | }, |
| 31 | |
| 32 | render() { |
| 33 | let {disabled, style, className, children} = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…