JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/dot-luv/jquery-ui.css">
<div>
    <p>Test area</p>
</div>
<div class="closed">
    <p>Test area</p>
</div>

CSS

* {
   -webkit-user-select: none;
   -moz-user-select: -moz-none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

body {
  cursor: grab;
}
div {
    height: 100px; border: solid 1px #ddd;
}
.closed {
    cursor: grabbing, default !important;
}