14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
|
// #docregion
|
||
|
import {bootstrap} from 'angular2/platform/browser';
|
||
|
import {ROUTER_PROVIDERS} from 'angular2/router';
|
||
|
|
||
|
import {AppComponent} from './app.component';
|
||
|
import {DialogService} from './dialog.service';
|
||
|
import {HeroService} from './heroes/hero.service';
|
||
|
|
||
|
bootstrap(AppComponent, [
|
||
|
ROUTER_PROVIDERS,
|
||
|
DialogService,
|
||
|
HeroService
|
||
|
]);
|