JSFiddle - React, Tailwind, and code Playground
by Rene Rubio
JavaScript
var doit;
function resizedw(){
$("body").append("did it");
}
window.onresize = function() {
clearTimeout(doit);
doit = setTimeout(function() {
resizedw();
}, 100);
};