JSFiddle - React, Tailwind, and code Playground
HTML
<input type="checkbox" class="rambo" value='1' /> 45
<input type="checkbox" class="rambo" value='2' /> 56
<input type="checkbox" class="rambo" value='3' /> 56
JavaScript
$(function(){
$(".rambo").change(function(){
$(this).siblings().attr("disabled", $(this).is(":checked"));
});
});