2016-04-27 11:28:22 -07:00
|
|
|
import {bootstrap} from '@angular/platform-browser-dynamic';
|
2015-12-10 21:41:02 -08:00
|
|
|
import {AppCtorComponent} from './app-ctor.component';
|
|
|
|
import {AppComponent as v1} from './app.component.1';
|
|
|
|
import {AppComponent as v2} from './app.component.2';
|
|
|
|
import {AppComponent as v3} from './app.component.3';
|
|
|
|
|
|
|
|
import {AppComponent as final} from './app.component';
|
|
|
|
|
|
|
|
// pick one
|
|
|
|
//bootstrap(v1);
|
|
|
|
//bootstrap(v2);
|
|
|
|
//bootstrap(v3);
|
|
|
|
bootstrap(final);
|
|
|
|
|
|
|
|
// for doc testing
|
|
|
|
bootstrap(AppCtorComponent);
|