Current state of project : Section 2 - Chapter 49.
All checks were successful
Deploying Website / build (push) Successful in 1m5s

This commit is contained in:
Maxime Delporte
2025-04-21 09:44:07 -03:00
parent 89f22f491e
commit 07186f2acd
31 changed files with 496 additions and 372 deletions

View File

@@ -0,0 +1,23 @@
<section id="tasks">
<header>
<h2>{{ user.name }}'s Tasks</h2>
<menu>
<button>Add Task</button>
</menu>
</header>
@if (selectedUserTasks) {
<ul>
@for (task of selectedUserTasks; track task.id) {
<li>
<app-task
[task]="task"
(complete)="onDeleteTask($event)"
/>
</li>
}
</ul>
} @else {
<p>Create a new task for his user.</p>
}
</section>