JSFiddle - React, Tailwind, and code Playground

HTML

<input id='cbCodigo' type='checkbox' /> one <br>
<input id='cbNombreCliente' type='checkbox' /> two <br>
<input id='tbCheckbox' type='checkbox' /> three <br>

JavaScript

$(function () {
    $('input:checkbox').change(function () {
        if (this.checked) {
            $('input:checkbox:not(#'+this.id+')').attr('checked', false);
        }
    });        
});