```
import {Component, View, bootstrap} from 'angular2/angular2';
@Component({
selector: 'my-app'
})
@View({
template: '
Hello {{ name }}
'
})
class MyAppComponent {
name : string;
constructor() {
this.name = 'Alice';
}
}
bootstrap(MyAppComponent);
```