JSFiddle - React, Tailwind, and code Playground
by Yuan Hong
HTML
Window Height : <span id="height"></span>
Window Width : <span id="width"></span>
<div class="Desktop"
JavaScript
$("#height").text($(window).height());
$("#width").text($(window).width());
$(window).resize(function() {
$("#height").text($(window).height());
$("#width").text($(window).width());
});