Last active
March 15, 2019 01:10
-
-
Save webmasterdevlin/86025c9ea9e3040cdfb35323784e6ea7 to your computer and use it in GitHub Desktop.
Angular HTML Template : src/app/heroes/container/heroes.component.html
This file contains hidden or 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="container"> | |
<app-new-item-form | |
[isShowNewItemForm]="isShowNewItemForm" | |
[newItemForm]="newItemForm" | |
(handleSubmit)="onSubmit()" | |
(handleCancelForm)="cancelForm()" | |
(handleShowNewItemForm)="showNewItemForm()" | |
></app-new-item-form> | |
<app-item-list | |
[editItemUrl]="editItemUrl" | |
[list$]="list$" | |
[list]="list" | |
(handleRemoveItem)="removeItem($event)" | |
></app-item-list> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment