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

14 lines
225 B
Markdown
Raw Normal View History

2015-10-14 15:47:22 -04:00
```
2015-08-11 03:27:09 -04:00
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);
2015-10-14 15:47:22 -04:00
```