Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
todo-list.component.html
<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