Skip to content

Instantly share code, notes, and snippets.

@b-tiwari
Last active March 6, 2018 23:19
Show Gist options
  • Save b-tiwari/786842040157de245b2145988bd322e8 to your computer and use it in GitHub Desktop.
Save b-tiwari/786842040157de245b2145988bd322e8 to your computer and use it in GitHub Desktop.
angular @input example child component v1
import { Component, Input } from '@angular/core';
import { Item } from '../../models';
@Component({
selector: 'item-details',
templateUrl: 'item-details.html'
})
export class ItemDetails {
@Input() item: Item;
constructor(){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment