Skip to content

Instantly share code, notes, and snippets.

@webmasterdevlin
Last active March 15, 2019 01:10
Show Gist options
  • Save webmasterdevlin/86025c9ea9e3040cdfb35323784e6ea7 to your computer and use it in GitHub Desktop.
Save webmasterdevlin/86025c9ea9e3040cdfb35323784e6ea7 to your computer and use it in GitHub Desktop.
Angular HTML Template : src/app/heroes/container/heroes.component.html
<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