angular-cn/public/doc-shredder/_test/test_fragments/multiregion/main3-noend.ts.ovr.md

19 lines
345 B
Markdown
Raw Normal View History

2015-10-14 15:47:22 -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 {
}
2015-10-14 15:47:22 -04:00
// indented comment
var x = 3;
// plaster should go immediately under here.
bootstrap(AppComponent);
// to be included in bootstrap...
2015-10-14 15:47:22 -04:00
```