JSFiddle - React, Tailwind, and code Playground

HTML

<button id="263">test</button>
<h1 id="323"></h1>

JavaScript

var x = 0;
$("#323").text("Step " + x);
$("#263").click(function(){
    x++;
    $("#323").text("Step " + x);
});