what is routing in angular code example
Example 1: ng router link
<a [routerLink]="['/user/bob']" [queryParams]="{debug: true}" fragment="education">
link to user component
</a>
Example 2: angular routing
// create a new project with routing enabled
ng new routing-app --routing