React Checkbox not sending onChange

TLDR: Use defaultChecked instead of checked, working jsbin. Trying to setup a simple checkbox that will cross out its label text when it is checked. For some reason handleChange is not getting fired when I use the component. Can anyone explain what I’m doing wrong? var CrossoutCheckbox = React.createClass({ getInitialState: function () { return { … Read more