app/src/commons/commons.module.ts

25 lines
429 B
TypeScript
Raw Normal View History

2018-08-17 00:10:51 +00:00
import { NgModule, APP_INITIALIZER } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-08-17 10:53:40 +00:00
import { CommonsUIModule } from '@overflow/commons/ui/commons-ui.module';
2018-08-17 00:10:51 +00:00
2018-08-17 10:53:40 +00:00
import { COMPONENTS } from './component';
2018-08-17 00:10:51 +00:00
@NgModule({
imports: [
CommonModule,
2018-08-17 10:53:40 +00:00
CommonsUIModule,
],
exports: [
...COMPONENTS,
2018-08-17 00:10:51 +00:00
],
declarations: [
2018-08-17 10:53:40 +00:00
...COMPONENTS,
2018-08-17 00:10:51 +00:00
],
providers: [
]
})
export class CommonsModule { }