11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
|
// #docregion
|
||
|
import {Component, bootstrap} from 'angular2/angular2';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'my-app',
|
||
|
template: '<h1>My First Angular 2 App</h1>'
|
||
|
})
|
||
|
class AppComponent { }
|
||
|
|
||
|
bootstrap(AppComponent);
|