JSFiddle - React, Tailwind, and code Playground
HTML
<div id="example"></div>
CSS
div { width: 100px; height:100px; background-color: red }
JavaScript
var div = document.getElementById("example");
div.onclick = function () {
this.style.cursor="crosshair";
};