// Annotation section @Component({ selector: 'my-app' }) @View({ template: '

Hello {{ name }}

' }) // Component controller class MyAppComponent { name: string; constructor() { this.name = 'Alice'; } }