Modify the Main Template

Modify src/app/app.component.html to include navigation and the router outlet:

<nav>
  <a routerLink="/">Home</a>
  <a routerLink="/about">About</a>
  <a routerLink="/user">Users</a>
</nav>

<router-outlet></router-outlet>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *