JSFiddle - React, Tailwind, and code Playground
JavaScript
var limitFunc = function () {
if (window.innerWidth > 999) {
/*your functions for big screen*/
console.log('bigScreen')
}
};
window.addEventListener("resize", limitFunc);
window.addEventListener("onload", limitFunc);