JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

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!';
}