JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" class="cbr"/>CB 1
<input type="checkbox" class="cbr"/>CB 1
<input type="checkbox" class="cbr"/>CB 1
<input type="checkbox" class="cbr"/>CB 1
<input type="checkbox" class="cbr"/>CB 1

JavaScript

$(".cbr").click(function() {
    $(".cbr").prop("checked", false);
    this.checked = true;
});