Gutenberg Block checkbox check-unckeck does not work

The property checked expects boolean value. (CheckboxControl)
How did you define myAttr in attributes?
If you set myAttr to ‘1’ or ‘0’ it is both true.
Try empty instead of ‘0’ props.setAttributes({ myAttr: '' }) or false.