JSFiddle - React, Tailwind, and code Playground

JavaScript

var clusters = {
  auxiliars: {
    viewport        : $(window),
    viewport_width  : function(){ return this.viewport.width() },
  }
}
    
        $(window).resize(function(){
        console.log( $(window).width() );
        });