diff --git a/content/roadmaps/104-angular/content/107-routing/101-router-outlets.md b/content/roadmaps/104-angular/content/107-routing/101-router-outlets.md index 81884c1fc..3aafee4a7 100644 --- a/content/roadmaps/104-angular/content/107-routing/101-router-outlets.md +++ b/content/roadmaps/104-angular/content/107-routing/101-router-outlets.md @@ -5,4 +5,4 @@ The router-outlet is a directive that's available from the @angular/router packa Thanks to the router outlet, your app will have multiple views/pages and the app template acts like a shell of your application. Any element, you add to the shell will be rendered in each view, only the part marked by the router outlet will be changed between views. Free Content -Understanding Router Outlets +Understanding Router Outlets diff --git a/content/roadmaps/104-angular/content/107-routing/102-router-links.md b/content/roadmaps/104-angular/content/107-routing/102-router-links.md index ac8fa1f83..77bf22ceb 100644 --- a/content/roadmaps/104-angular/content/107-routing/102-router-links.md +++ b/content/roadmaps/104-angular/content/107-routing/102-router-links.md @@ -1 +1,7 @@ -# Router links \ No newline at end of file +# Router links + +In Angular, routerLink when applied to an element in a template, makes that element a link that initiates navigation to a route. Navigation opens one or more routed components in one or more locations on the page. + +Free Content +Understanding Router Links +Angular Router: Navigation Using RouterLink, Navigate, or NavigateByUrl