JSFiddle - React, Tailwind, and code Playground
HTML
<input type="checkbox" class="fakeRadio" checked />
<input type="checkbox" class="fakeRadio" />
<input type="checkbox" class="fakeRadio" />
JavaScript
$(".fakeRadio").click(function(){
var wasChecked = !$(this).prop("checked");
$(".fakeRadio").prop( "checked", false );
$(this).prop("checked", (!wasChecked) ? true : false );
});