JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>
            <input type="checkbox" id="chk1" />
        </td>
        <td>
            <input type="radio" id="rdblst1" disabled="disabled" name='choices1' checked="checked" />Yes
            <input type="radio" id="rdblst2" disabled="disabled" name='choices1' />No</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" id="chk2" />
        </td>
        <td>
            <input type="radio" id="rdblst3" disabled="disabled" name='choices' />Yes
            <input type="radio" id="rdblst4" checked="checked" disabled="disabled" name='choices' />No</td>
    </tr>
</table>

JavaScript

$('input[type="checkbox"]').change(function () {
    //$('[name="choices1"]').removeAttr( "disabled" );
    $('[name="choices1"]').attr("disabled", !this.checked);
});