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

My First Angular 2 App

' }) class AppComponent { } bootstrap(AppComponent); ```