Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Last active December 10, 2016 15:19
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 matthieu-D/e3eabfecb8dafed149c7acd39bcbb32f to your computer and use it in GitHub Desktop.
Save matthieu-D/e3eabfecb8dafed149c7acd39bcbb32f to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'home', // <home></home>,
template: 'Welcome Home'
})
export class HomeComponent {
ngOnInit() {
console.log('hello `Home` component');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment