From Chocolate Goat, 10 Years ago, written in Plain Text.
This paste is a reply to Untitled from Commodious Duck - go back
Embed
Viewing differences between Untitled and Re: Untitled
// Annotation section
@Component({
  selector: 'my-app'
})
@View({
  template: '<h1>Hello {{ name }}</h1>'\n})
// Component controller
class MyAppComponent {
  name: string;
  
  constructor() {
    this.name = 'Alice';
  }
}