Ward Bell 393987bdf5 docs: split intro into separate chapters, shuffle code, update to alph52
closes 
A major refactoring of the intro chapters includes text revision
and the addition of "module" as an 8th "basic building block".
Incorporates John Papa feedback.
2015-12-12 09:46:07 -08:00

14 lines
415 B
TypeScript

import {bootstrap} from 'angular2/platform/browser';
// #docregion import
import {AppComponent} from './app.component';
// #enddocregion import
import {HeroService} from './hero.service';
import {BackendService} from './backend.service';
import {Logger} from './logger.service';
// #docregion bootstrap
bootstrap(AppComponent, [
BackendService, HeroService, Logger
]);
// #enddocregion bootstrap