JSFiddle - React, Tailwind, and code Playground
HTML
<input type="email" id="abc" placeholder="abc">
<input type="button" onclick="clickme()" value="go">
JavaScript
function clickme(){
document.getElementById("abc").value="";
}
<input type="email" id="abc" placeholder="abc">
<input type="button" onclick="clickme()" value="go">
function clickme(){
document.getElementById("abc").value="";
}