Skip to content

Instantly share code, notes, and snippets.

@AlexLakatos
Forked from gsans/Greeter.js
Created July 21, 2017 11:07
Show Gist options
  • Save AlexLakatos/a20fb96e18eeac5e69e8ac50f72d4306 to your computer and use it in GitHub Desktop.
Save AlexLakatos/a20fb96e18eeac5e69e8ac50f72d4306 to your computer and use it in GitHub Desktop.
Greeter Component
// Usage: <greeter name="Joe"></greeter>
// Renders: <h1>Hello Joe!</h1>
@Component({
selector: 'greeter',
template: `<h1>Hello {{name}}!</h1>`
})
export class Greeter {
@Input() name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment