lorem1213
lorem1213

Reputation: 464

How to navigate within page in react?

For my home page I have my route as <Route exact path="/" ><Home /></Route> and for my docs page I have my route as <Route exact path="/docs" ><Home /></Route>. I wanted to navigate within docs page and for that I did

<a href="#id" >navigate</a>

And it works. But when I do the same i.e.

<a href="#about" >About</a>

for Home page it changes the url to http://localhost:3000/#about but didnot naviagte to about section.

Upvotes: 1

Views: 96

Answers (1)

Aashiq
Aashiq

Reputation: 497

Use the id, 'about' inside the header or any tag which you want to navigate. Eg:

 <section id='about'></section>

Upvotes: 1

Related Questions