JSFiddle - React, Tailwind, and code Playground
by superhead
HTML
<div class="comment">
<div class="myLinks">Some Links</div>
<div class="comment">
<div class="myLinks">Some Links</div>
</div></div>
CSS
.myLinks{
display:none;
}
.comment{
min-height:10px;
min-width:10px;
background:red;
}
.comment:hover .myLinks{
display:block;
}