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 e2f49690f..81884c1fc 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 @@ -1 +1,8 @@ -# Router outlets \ No newline at end of file +# Router outlets + +The router-outlet is a directive that's available from the @angular/router package and is used by the router to mark where in a template, a matched component should be inserted. + +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