JSFiddle - React, Tailwind, and code Playground
HTML
<form action="alert.php" id="form_email" method="post" target="_blank" >
<input type="submit">
</form>
JavaScript
form_email.addEventListener("submit",function(event){
event.preventDefault();
return false;
});