2015-12-01 12:15:14 +01:00
|
|
|
//#docregion
|
|
|
|
import {bootstrap} from 'angular2/platform/browser';
|
|
|
|
|
|
|
|
// #docregion import-rxjs
|
|
|
|
// Add all operators to Observable
|
|
|
|
import 'rxjs/Rx';
|
|
|
|
// #enddocregion import-rxjs
|
|
|
|
|
2016-02-02 02:27:52 -08:00
|
|
|
import {WikiComponent} from './wiki/wiki.component';
|
|
|
|
import {WikiSmartComponent} from './wiki/wiki-smart.component';
|
|
|
|
import {TohComponent} from './toh/toh.component';
|
2015-12-01 12:15:14 +01:00
|
|
|
|
|
|
|
bootstrap(WikiComponent);
|
2016-02-02 02:27:52 -08:00
|
|
|
bootstrap(WikiSmartComponent);
|
2015-12-01 12:15:14 +01:00
|
|
|
bootstrap(TohComponent);
|