Skip to content

Instantly share code, notes, and snippets.

@webmasterdevlin
Created July 3, 2019 22:01
Show Gist options
  • Save webmasterdevlin/043b5480204e3234eea8e55e518b4aa4 to your computer and use it in GitHub Desktop.
Save webmasterdevlin/043b5480204e3234eea8e55e518b4aa4 to your computer and use it in GitHub Desktop.
Angular HTML Template : 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$"
(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