JSFiddle - React, Tailwind, and code Playground
HTML
<input type="checkbox" id="foo" name="foo" value="foo">Foo
<input type="checkbox" id="foo" name="foo" value="boo">Boo
JavaScript
$('#foo').on("change", function(e){
alert($(e.target).val());
})