JSFiddle - React, Tailwind, and code Playground
HTML
<input type="button" id="saveFavPunch" name="saveFavPunch" value="save" onClick="saveFavPunch()" >
JavaScript
function saveFavPunch(){
alert('hello2');
}
<input type="button" id="saveFavPunch" name="saveFavPunch" value="save" onClick="saveFavPunch()" >
function saveFavPunch(){
alert('hello2');
}