Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created June 5, 2018 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/8d6b1d64aeaaf2244b113e457d93527c to your computer and use it in GitHub Desktop.
Save debugmodedotnet/8d6b1d64aeaaf2244b113e457d93527c to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-message',
template: `
<h2>
Hey {{person.firstname}} {{person.lastname}} !
</h2>
`
})
export class MessageComponent {
@Input() person;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment