Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created September 6, 2018 05:46
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/2a0238578ece0f1ff9d9cd1d8df5356a to your computer and use it in GitHub Desktop.
Save lydemann/2a0238578ece0f1ff9d9cd1d8df5356a to your computer and use it in GitHub Desktop.
todo-list.component.html
<div class="todo-list-wrapper">
<div class="mx-auto col-10">
<h5>TODO list</h5>
<hr>
<ul class="list-group mb-3">
<app-todo-item *ngFor="let todo of todoList"
[todoItem]="todo"
(todoDelete)="deleteTodo($event)"
(todoEdit)="editTodo($event)"></app-todo-item>
</ul>
</div>
<hr>
<app-add-todo [currentTODO]="currentTODO"></app-add-todo>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment