Add task displaying in active list component.

This commit is contained in:
2022-03-04 22:08:13 +01:00
parent 86fcdd4d12
commit 21bd3826e6
9 changed files with 183 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
<div class="task">
<div class="header">
<mat-icon class="drag-n-drop">drag_handle</mat-icon>
<mat-checkbox class="example-margin"></mat-checkbox>
<div class="input-container">
<input type="text" [formControl]="taskNameControl" />
</div>
<button mat-button type="button" class="expand">
<mat-icon>expand_more</mat-icon>
</button>
</div>
</div>