JSFiddle - React, Tailwind, and code Playground

by Spencer Smith

HTML

<div class="disable">
  <a href="https://google.com/" target="_blank">Google</a>
</div>

CSS

.disable {
  pointer-events: none;
}
a {
  pointer-events: default !important;
}