Adding pop-up when user wants to create a task : new-task.component. Handle cancel pop-up action.
All checks were successful
Deploying Website / build (push) Successful in 1m2s

This commit is contained in:
Maxime Delporte
2025-04-21 17:40:30 -03:00
parent 08173fbdc3
commit 234403c4c9
5 changed files with 141 additions and 15 deletions

View File

@@ -1,8 +1,12 @@
@if (isAddingTask) {
<app-new-task (close)="onStopAddTask()" />
}
<section id="tasks">
<header>
<h2>{{ user.name }}'s Tasks</h2>
<menu>
<button (click)="onAddTask()">Add Task</button>
<button (click)="onStartAddTask()">Add Task</button>
</menu>
</header>