July 2019
Intermediate to advanced
416 pages
10h 6m
English
The requirements that we have set for our application are such that we will have three main screens. Our main screen will show all todo tasks, including whether they have been completed or not. The second will show overdue tasks, and the last will let our users add new tasks. Each of these will be created as separate components. For now, we are going to add dummy implementations of them, which will allow us to set up our routing:
ng g c components/AddTaskng g c components/Alltasksng g c components/OverdueTasks
Our routing is configured and controlled from the app-routing.module.ts file. Here, we are going to define a set of rules that we expect Angular to follow.
Before we start adding routes, we should actually work ...
Read now
Unlock full access