9 lines
268 B
TypeScript

// #docregion
///<reference path="../node_modules/angular2/typings/browser.d.ts"/>
import {bootstrap} from 'angular2/platform/browser'
// #docregion app-component
import {AppComponent} from './app.component'
// #enddocregion app-component
bootstrap(AppComponent);