JSFiddle - React, Tailwind, and code Playground

by Drath

HTML

<p>Spam right click + left click in here to see default cursor.</p>

CSS

body, html {
  cursor: pointer;
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
  user-select: none;
}

p {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

JavaScript

document.addEventListener("contextmenu", function(e){
  e.preventDefault();
}, false);