feat(weekPlanner): make super basic add task work for planner

This commit is contained in:
Johannes Millan 2024-07-15 16:28:22 +02:00
parent 6c24d0250f
commit 666cbb5dc4
7 changed files with 93 additions and 7 deletions

View file

@ -0,0 +1,17 @@
<div
style="text-align: center"
*ngIf="!isShowAddTask"
(click)="isShowAddTask = true"
>
<button mat-button>
<mat-icon>add</mat-icon>
Add new
</button>
</div>
<add-task-bar
*ngIf="isShowAddTask"
(blurred)="isShowAddTask = false"
(done)="isShowAddTask = false"
[planForDay]="planForDay"
></add-task-bar>