JSFiddle - React, Tailwind, and code Playground
by Jim_Toth
HTML
test
JavaScript
$(window).resize(function(){
if ($(window).width() === 1200) {
console.log('small');
}
if ($(window).width() === 1199) {
console.log('big');
window.location.href=window.location.href;
}
});