JSFiddle - React, Tailwind, and code Playground

by David Buzatto

HTML

<input name="addInning" type="button" value="Add Inning" id="addInning" onclick="addInning();">

JavaScript

function addInning() {
    alert("hello");
}