Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created June 3, 2020 15:32
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/cdfbb7614422b1299bec7fa41fd0ee1c to your computer and use it in GitHub Desktop.
Save lydemann/cdfbb7614422b1299bec7fa41fd0ee1c to your computer and use it in GitHub Desktop.
todo-list.component.html
<app-crud-item
*ngFor="let todo of todos"
[todoItem]="todo"
data-test="todo-item"
(todoDelete)="deleteTodo($event)"
(todoEdit)="selectTodoForEdit($event)"
(todoCompleteToggled)="todoCompleteToggled($event)"
></app-crud-item>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment