JSFiddle - React, Tailwind, and code Playground

JavaScript

$(window).resize(function() {
    $("body").append("Resizing was detected!<br>");
})
$(window).ready(function() {
    $(window).resize();
});