JSFiddle - React, Tailwind, and code Playground

HTML

<form>
    <input type="text" name="name" value="0" />
    <input type="button" value="up" onclick="this.form.name.value++;" >
    <input type="button" value="down" onclick="this.form.name.value--;">
</form>