import React from "react";
import PageOne from "./pageone";
class Main extends React.Component {
constructor(props){
super(props);
this.state = {
WeatherObj:null,
}
}
change(e){
console.log(e);
}
render() {
return(
<div>
<input id="checkBox" value="bmw" type="checkbox" onClick={this.change.bind(this)}/>
</div>
)
}
}
export default Main;
e.currentTarget.checked
, currentTarget - потому что так советует документация по реакту, потому что... - дальше уже сами =) )