When we select any of our boards on the homepage, the application will redirect us to the selected board page. On the board page, we will have the board title and all the tasks and subtasks associated with the board.
To achieve this functionality, the following tasks need to be implemented:
- We need to route to the board page for which we will use Angular routing.
- Once routed, we need to know which board was selected on the homepage; this will be achieved by passing a parameter in routing.
- On the board page, we need to fetch the respective tasks and subtasks. We will share Trello service to achieve this.
- With the required data, we will need to display the tasks and their respective subtasks. For this, we will create the Task and SubTask components and pass the required data to them.
- The communication between Task and SubTask will be handled...