JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" id="1"/><input type="checkbox" id="2"/><input type="checkbox" id="3"/><input type="checkbox" id="4"/>

JavaScript

$(':checkbox').change(function() {
    this.checked = true;
    $(this).siblings(':checkbox').attr('checked', false);
});