JSFiddle - React, Tailwind, and code Playground

HTML

<div id='app'> this is my main app</div>
<div id='share'> share this </div>

JavaScript

$('#share').hide()
$('#app').hover(function(){
$('#share').show()
},function(){
$('#share').hide()})