mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
import {bootstrap} from 'angular2/platform/browser';
|
|
import {AppComponent} from './app.component';
|
|
import {ROUTER_PROVIDERS} from "angular2/router";
|
|
import {Authentication} from "./services/authentication";
|
|
|
|
bootstrap(AppComponent, [
|
|
ROUTER_PROVIDERS,
|
|
Authentication
|
|
]);
|