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
|
|
|
|
2016-06-08 01:06:25 +02:00
|
|
|
// #docregion bootstrap
|
2016-01-11 13:49:12 +01:00
|
|
|
bootstrap(AppComponent);
|
2016-06-08 01:06:25 +02:00
|
|
|
// #enddocregion bootstrap
|
2016-05-03 14:06:32 +02:00
|
|
|
bootstrap(ProvidersComponent);
|