JSFiddle - React, Tailwind, and code Playground

HTML

<div class="bigButton">
Test</div>

JavaScript

$(function () {
    var count = 0;
    $("div.bigButton").mouseover(function() {
        count++;
        this.style.backgroundColor = '#dfdfdf';
        this.innerText = 'Test ' + count;
    });
});