JSFiddle - React, Tailwind, and code Playground

JavaScript

var width,height;
    window.onresize = window.onload = function() {
        width = this.innerWidth;
        height = this.innerHeight;
        document.body.innerHTML = width + 'x' + height;
    }