Implements task saving and retrieving.

This commit is contained in:
florian
2021-10-20 13:37:45 +02:00
parent c1a7ccb535
commit 89b50142c7
18 changed files with 229 additions and 504 deletions

View File

@@ -0,0 +1,7 @@
<div>
<h1>Todo List</h1>
<div *ngFor="let task of tasks" [title]="task.creationDate">
<h1>{{ task.title }}</h1>
<p>{{ task.description }}</p>
</div>
</div>