This is my navbar.html
<ul class="white">
<li><a href="/signup">Signup</a></li>
<li><a href="/challange">Create Challange</a></li>
<li><a href="/feed">News Feed</a></li>
</ul>
This is my app.component.html
<app-navbar></app-navbar>
<router-outlet></router-outlet>
Click on an each menu link its feel as loading an entire page even i run this code in localhost. But, I seen many angular project page is not loading entirely just change that url only.
My question, this problem is arrive from href
?
shall I use roouterLink
to overcome this issue?