22 lines
662 B
TypeScript
Raw Normal View History

// #docplaster
// #docregion
2016-04-27 11:28:22 -07:00
import { bootstrap } from '@angular/platform-browser-dynamic';
// #docregion http-providers
2016-04-27 11:28:22 -07:00
import { HTTP_PROVIDERS } from '@angular/http';
// #enddocregion http-providers
// #docregion import-rxjs
// Add all operators to Observable
import 'rxjs/Rx';
// #enddocregion import-rxjs
import { TohComponent } from './toh/toh.component';
import { WikiComponent } from './wiki/wiki.component';
import { WikiSmartComponent } from './wiki/wiki-smart.component';
// #docregion http-providers
bootstrap(TohComponent, [HTTP_PROVIDERS]);
// #enddocregion http-providers
bootstrap(WikiComponent);
bootstrap(WikiSmartComponent);