JSFiddle - React, Tailwind, and code Playground

by Pritam Bohra

HTML

<div class="test"></div>

CSS

.test {
  width: 100px;
  height: 200px;
  background-color: #000;
}

.test:hover {
  background-color: #555;
  cursor: pointer;
}