Created
March 29, 2019 06:06
-
-
Save lydemann/8768f96ba536708d0150266c812b6343 to your computer and use it in GitHub Desktop.
todo-list.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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