JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.jquery.com/jquery-2.2.4.min.js"></script>
<div onclick="">Test</div>
CSS
div {
width: 50px;
height: 50px;
background-color: green;
}
div:hover{
background-color: yellow;
color:red;
cursor: pointer;
}