JSFiddle - React, Tailwind, and code Playground
HTML
<div id="doeSupported">
...
</div>
JavaScript
function deviceOrientationHandler(evt){
console.log(evt);
document.getElementById('doeSupported').innerText = JSON.stringify(evt);
}
if (window.DeviceOrientationEvent) {
window.addEventListener('deviceorientation', deviceOrientationHandler, false);
document.getElementById('doeSupported').innerText = 'Supported!';
}