JSFiddle - React, Tailwind, and code Playground
HTML
<div id="content" >This is my top section</div>
<div id="bottom">
<a href="#content">Click to go to top</a>
</div>
CSS
#content{
height:150px;
width:200px;
border:1px solid green;
background-color:#ddd;
}
#bottom{
margin-top:500px;
}