Ward Bell 79d3d9f0ad docs(samples): convert boot.ts -> main.ts
plus router text fix and missed beta.2 update to QS.js
closes #773
2016-01-28 17:32:38 -08:00

16 lines
456 B
TypeScript

import {bootstrap} from 'angular2/platform/browser';
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);