Denys Vuika 2c73f4a8bd document-list cleanup
- removed HelloWorld from the package
- renamed namespace
2016-04-21 15:12:45 +01:00

14 lines
463 B
TypeScript

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';
import {ALFRESCO_PROVIDERS} from 'ng2-alfresco-documentlist/ng2-alfresco-documentlist';
bootstrap(AppComponent, [
ROUTER_PROVIDERS,
HTTP_PROVIDERS,
Authentication,
ALFRESCO_PROVIDERS
]);