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>
Modify the Main Template