ngx-admin/src/app/index.ts

9 lines
154 B
TypeScript
Raw Normal View History

2016-04-20 16:32:12 +03:00
// App
2016-05-13 13:34:55 +03:00
import {AppState} from "./app.state";
2016-04-20 16:32:12 +03:00
export * from './app.component';
// Application wide providers
export const APP_PROVIDERS = [
2016-05-13 13:34:55 +03:00
AppState
2016-04-20 16:32:12 +03:00
];