JSFiddle - React, Tailwind, and code Playground

HTML

<input type="radio" disabled="disabled" />

JavaScript

$(':radio:disabled').removeAttr('disabled').click(function(){
    this.checked=false;
})