JSFiddle - React, Tailwind, and code Playground
HTML
<form id="theForm">
<input type="checkbox" id="myCheckbox"/>
<input type="submit" value="bhghjhjh"/>
</form>
JavaScript
document.getElementById("theForm").onsubmit = function() {
return document.getElementById("myCheckbox").checked;
}