Skip to content

Instantly share code, notes, and snippets.

@bharat-tiwari
Last active March 13, 2018 22:39
Show Gist options
  • Save bharat-tiwari/5259d84e145b5d652abf23d34eb7096e to your computer and use it in GitHub Desktop.
Save bharat-tiwari/5259d84e145b5d652abf23d34eb7096e to your computer and use it in GitHub Desktop.
Parent component - Order
<div>
<h3>Order Processing System</h3>
<div>
<label>Order # {{order.id}}</label>
<label>Order Date {{order.date}}</label>
</div>
....
<div>
<item-details *ngIf="itemSelected"
[item]="itemSelected"
[notifyItemProcessed]="processOrderItems" ></item-details>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment