Last active
July 21, 2017 11:34
-
-
Save gsans/5a7f179a75650d316c3e to your computer and use it in GitHub Desktop.
Greeter Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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