JSFiddle - React, Tailwind, and code Playground

HTML

<span class="body"> hover this </span>
<span class="desc"> show </span>

CSS

.desc {display: none;}

JavaScript

$(document).ready(function() {
    $(".body").hover(function () {
        $(".desc").toggle();
    })
})