JSFiddle - React, Tailwind, and code Playground

HTML

<div class="kliklink">
  <a href="#">Test</a>
</div>

CSS

.kliklink {
  width: 200px;
}

a {
  display:block;
  background-color:orange;
}

a:hover {
  background-color: red;
}