JSFiddle - React, Tailwind, and code Playground

by kuyabiye

JavaScript

var site = {
    isMobile: function() {
    console.log($(window).width())
    return $(window).width() < 640;
    },
    
    test:function() {

$(window).resize(function() {
    
   console.log(site.isMobile()) 
});
    }
        }
        site.test();