JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box">

</div>

CSS

.box{
    background-color: #ff0000;
	width:100px;
	height:100px;
	-webkit-transition: opacity 1s;
}
.box:hover{
	opacity:0;
}