Search code examples
reactjsanchorreact-router-dom

Anchor href=#id is not working in react-router-dom Link


Here is simple anchor tag <a href='#about'/>About</a>. It scrolls down to element with about id. But I can not do the same with react-router Link. I tried <Link to='#about'/> but it did not work. What can I do in this case?


Solution

  • You can use react-router-hash-link. See this issue on GitHub here.