2016-05-03 14:06:32 +02:00
|
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { ProvidersComponent } from './providers.component';
|
2016-01-11 13:49:12 +01:00
|
|
|
|
|
|
|
//#docregion bootstrap
|
|
|
|
bootstrap(AppComponent);
|
|
|
|
//#enddocregion bootstrap
|
2016-05-03 14:06:32 +02:00
|
|
|
bootstrap(ProvidersComponent);
|