mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
// App
|
|
export * from './app.component';
|
|
export * from './app.service';
|
|
|
|
import {AppState} from './app.service';
|
|
|
|
// Application wide providers
|
|
export const APP_PROVIDERS = [
|
|
AppState
|
|
];
|