Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created March 29, 2019 06:06
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/8768f96ba536708d0150266c812b6343 to your computer and use it in GitHub Desktop.
Save lydemann/8768f96ba536708d0150266c812b6343 to your computer and use it in GitHub Desktop.
todo-list.component.html
<div class="todo-list-wrapper" *ngIf="(todoList$ | async) as todoList">
<div class="mx-auto col-10">
<h5>{{'todo-list' | translate}}</h5>
<hr>
<app-cards-list [tableRef]="todoListRef" [cardRef]="todoItemCardRef" [data]="todoList"></app-cards-list>
</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