JSFiddle - React, Tailwind, and code Playground

HTML

<span id="hoverme">View Detail</span>
<div id="showme" style="display:none">
    This is the detail
</div>

JavaScript

$(function () {
    $("#hoverme").hover(function () {
      $("#showme").toggle(1000);  
    })
});