JSFiddle - React, Tailwind, and code Playground
HTML
<input type="checkbox" class="test" />
<input type="checkbox" class="test" />
<input type="checkbox" class="test" />
<input type="checkbox" class="test" />
JavaScript
$('.test').change(function(){
if (this.checked) {
$(this).siblings('.test').attr('checked',false);
}
});