JSFiddle - React, Tailwind, and code Playground
HTML
<input />
JavaScript
var sumedges = $(window).width() + $(window).height();
$(window).resize(function(){
if($(window).width() + $(window).height() < sumedges) {
alert("1");
} else {
alert("2");
}
});