JSFiddle - React, Tailwind, and code Playground

HTML

<h5>Screen</h5>
Width: <span id="sWidth"></span> <br />
Height: <span id="sHeight"></span>

<h5>Window</h5>
Width: <span id="wWidth"></span> <br />
Height: <span id="wHeight"></span>

JavaScript

$(document).ready(function() {
    $("#sWidth").html(screen.width);
    $("#sHeight").html(screen.height);
    $("#wWidth").html(window.innerWidth);
    $("#wHeight").html(window.innerHeight);
})