JSFiddle - React, Tailwind, and code Playground

JavaScript

var resizeTimer;
window.onresize = function(){
    if (resizeTimer){
        clearTimeout(resizeTimer);
    } 
	resizeTimer = setTimeout(function(){
		alert(1);
		}, 500);
};