Simple native (ng2) document list component

This commit is contained in:
Denys Vuika
2016-04-12 20:18:15 +01:00
parent 13a3f7ae7d
commit 7a36a1a30a
9 changed files with 184 additions and 6 deletions

View File

@@ -1,9 +1,11 @@
import {bootstrap} from 'angular2/platform/browser';
import {AppComponent} from './app.component';
import {ROUTER_PROVIDERS} from "angular2/router";
import {HTTP_PROVIDERS} from 'angular2/http';
import {Authentication} from "./services/authentication";
bootstrap(AppComponent, [
ROUTER_PROVIDERS,
HTTP_PROVIDERS,
Authentication
]);