Skip to content
Angular Essentials
GitHub

Task - Routing

  • Create a new component called home under forms directory.
  • Give our home page some styling and template (static or dynamic).
  • Lazily route home component.
  • Similarly, create a 404 page for our application when none of the route matches.

Wildcard route for a 404 page is { path: '**', component: PageNotFoundComponent }