JSFiddle - React, Tailwind, and code Playground
HTML
<button id="button">0</button>
JavaScript
document.getElementById('button').addEventListener('click', function () {
this.active = !this.active;
var step = (this.active ? 3 : 0);
this.innerHTML = step;
}, true);