JSFiddle - React, Tailwind, and code Playground

by dfreedm

CSS

html, body {
    height: 100%;
    margin: 0;
}
body {
    white-space: pre;
}

JavaScript

document.addEventListener('MSPointerMove', function(e) {
    document.body.textContent += (e.pointerId + ' ' + e.isPrimary + '\n');
});