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

My first Angular 2 App

' }) class AppComponent { } // #docregion twoparts // indented comment var x = 3; // #enddocregion bootstrap(AppComponent); // #docregion twoparts // final comment // #enddocregion twoparts