2016-02-10 17:27:14 -02:00
|
|
|
// #docregion
|
2016-03-28 13:30:03 -07:00
|
|
|
import 'package:angular2/platform/browser.dart';
|
|
|
|
|
2016-02-10 17:27:14 -02:00
|
|
|
import 'package:server_communication/toh/toh_component.dart';
|
|
|
|
import 'package:server_communication/wiki/wiki_component.dart';
|
|
|
|
import 'package:server_communication/wiki/wiki_smart_component.dart';
|
|
|
|
|
|
|
|
main() {
|
|
|
|
bootstrap(TohComponent);
|
|
|
|
bootstrap(WikiComponent);
|
|
|
|
bootstrap(WikiSmartComponent);
|
|
|
|
}
|