angular-docs-cn/tools/doc-shredder/_test/test_fragments/no-multiregion/main.ts.ovr.md

225 B

import {Component, View, bootstrap} from 'angular2/angular2';

@Component({
  selector: 'my-app'
})
@View({
  template: '<h1 id="output">My first Angular 2 App</h1>'
})
class AppComponent {
}
bootstrap(AppComponent);