JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<input
name="resp_mail"
required="required"
oninvalid="setCustomValidity('Custom error message')"
onchange="try{setCustomValidity('')}catch(e){}"
onkeypress="try{setCustomValidity('')}catch(e){}"
type="email"
placeholder="Enter mail"
/>
<input type='submit' value='Send' name='bar' type='post'/>
</form>