I\'m having trouble to update the checkbox state after it\'s assigned with default value checked="checked" in React.
checked="checked"
var rCheck = React
In my case I felt that "defaultChecked" was not working properly with states/conditions. So I used "checked" with "onChange" for toggling the state.
Eg.
checked={this.state.enabled} onChange={this.setState({enabled : !this.state.enabled})}