Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created March 29, 2019 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lydemann/e0367ba2f4b53bcbc66ad3276cc534dd to your computer and use it in GitHub Desktop.
Save lydemann/e0367ba2f4b53bcbc66ad3276cc534dd to your computer and use it in GitHub Desktop.
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