1handleChange(e) {
2 let isChecked = e.target.checked;
3 // do whatever you want with isChecked value
4}
5
6render() {
7 // ... your code here
8 return (
9 {/* your other jsx here */}
10 <Checkbox otherProps onChange={e => this.handleChange(e)} />
11 {/* your other jsx here */}
12 );
13}
14