JSFiddle - React, Tailwind, and code Playground

HTML

<div onclick="play()" class="button">

        <button class="button1">

            Bam

        </button>

    </div>
        <div id="resultArea">0</div>

JavaScript

function play() {
document.getElementById("resultArea").innerHTML = parseInt(document.getElementById("resultArea").innerHTML)+1;
}