// #docregion // #docregion import import {Component, View, bootstrap} from 'angular2/angular2'; // #enddocregion @Component({ selector: 'my-app' }) @View({ template: '

My first Angular 2 App

' }) class AppComponent { } // #docregion bootstrap bootstrap(AppComponent); // #enddocregion