Skip to content

Instantly share code, notes, and snippets.

@russelyang
Last active June 25, 2016 04:05
Show Gist options
  • Save russelyang/6028a97e9111c6ac85fedd5a702c26b8 to your computer and use it in GitHub Desktop.
Save russelyang/6028a97e9111c6ac85fedd5a702c26b8 to your computer and use it in GitHub Desktop.
import {Component} from 'angular2/core';
@Component( {
selector: 'ngc-hello-component',
template: '<p>Hello {{name}}</p>'
})
export class HelloComponent {
name : string;
constructor() {
this.name = "world";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment