Created
March 29, 2019 06:19
-
-
Save lydemann/e0367ba2f4b53bcbc66ad3276cc534dd to your computer and use it in GitHub Desktop.
todo-list.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="list-group mb-3"> | |
<app-todo-item-list-row *ngFor="let todo of todos; trackBy: trackByFn" [todoItem]="todo" (todoDelete)="deleteTodo($event)" (todoEdit)="editTodo($event)"></app-todo-item-list-row> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment