JSFiddle - React, Tailwind, and code Playground
HTML
<div class="divbutton">
<button type="button">Hello</button>
</div>
CSS
.divbutton {
height: 30px;
background: #000;
}
button {
display: none;
}
.divbutton:hover button {
display: block;
}