16 lines
309 B
TypeScript
Raw Normal View History

2015-08-11 00:27:09 -07:00
// #docregion
// #docregion import
import {Component, View, bootstrap} from 'angular2/angular2';
// #enddocregion
@Component({
selector: 'my-app'
})
@View({
template: '<h1 id="output">My first Angular 2 App</h1>'
})
class AppComponent {
}
// #docregion bootstrap
bootstrap(AppComponent);
2015-10-14 12:47:22 -07:00
// #enddocregion