15 lines
226 B
Markdown
Raw Permalink Normal View History

2015-10-14 12:47:22 -07: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 12:47:22 -07:00
```