JSFiddle - React, Tailwind, and code Playground

JavaScript

var width,height;
$(window).on('load resize', function() {
    width = this.innerWidth;
    height = this.innerHeight;
    document.body.innerHTML = width + 'x' + height; // For demo purposes
});