Last active
October 24, 2017 00:25
-
-
Save cgatian/ea9926ae16956a72a6e2b0df63024c57 to your computer and use it in GitHub Desktop.
sample header component
This file contains 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
@Component({ | |
selector: 'my-header', | |
template: `<h1>{{ title }}</h1>` | |
}) | |
export class HeaderComponent { | |
title = 'Hello World'; | |
constructor() { | |
setTimeout(_ => { | |
this.title = 'Updated!'; | |
}, 5000); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment