JSFiddle - React, Tailwind, and code Playground

by Soviut

HTML

<div id="orientation">?</div>

JavaScript

$(window).on('resize', function(e) {
    var orientation = 'portrait';
    if (window.innerWidth > window.innerHeight) {
        orientation = 'landscape';
    } else {
        orientation = 'portrait';
    }
    $('#orientation').text(orientation);
});
$(window).resize();