In HTML, it is easy to jump to specific section by simply adding {id} to that specific section and {#id} to the href.
<a href='#specific'>link</a>
<section id='specific'>This is the section!</h1>
Unfortunately, this method does not work in React Rout...