Adding add task functionnality: without personalisation right now.
All checks were successful
Deploying Website / build (push) Successful in 1m1s

This commit is contained in:
Maxime Delporte
2025-04-21 12:57:42 -03:00
parent d4fe4db6ff
commit 08173fbdc3
2 changed files with 20 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
<header>
<h2>{{ user.name }}'s Tasks</h2>
<menu>
<button>Add Task</button>
<button (click)="onAddTask()">Add Task</button>
</menu>
</header>
@@ -12,7 +12,7 @@
<li>
<app-task
[task]="task"
(complete)="onDeleteTask($event)"
(complete)="onCompleteTask($event)"
/>
</li>
}