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()})
<div id='app'> this is my main app</div>
<div id='share'> share this </div>
$('#share').hide()
$('#app').hover(function(){
$('#share').show()
},function(){
$('#share').hide()})