JSFiddle - React, Tailwind, and code Playground
HTML
<p><label><input type="radio" name="group1" /> one</label></p>
<p><label><input type="radio" name="group1" /> two</label></p>
<p><label><input type="radio" name="group1" /> three</label></p>
JavaScript
$(':radio[name=group1]').change(function() {
$(':radio[name=group1]:not(:checked)').attr('disabled', 'disabled');
});