Skip to content

Instantly share code, notes, and snippets.

@cgatian
Last active October 24, 2017 00:25
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 cgatian/ea9926ae16956a72a6e2b0df63024c57 to your computer and use it in GitHub Desktop.
Save cgatian/ea9926ae16956a72a6e2b0df63024c57 to your computer and use it in GitHub Desktop.
sample header component
@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