JSFiddle - React, Tailwind, and code Playground

JavaScript

var i = 0;
var test = function() {
    console.log(i++);
};

$(window).resize(function() {
    test();
});