2017-05-19 14:40:20 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
2017-06-13 20:40:08 +03:00
|
|
|
|
|
|
|
|
import { TreeModule } from 'ng2-tree';
|
|
|
|
|
import { ToasterModule } from 'angular2-toaster';
|
2017-05-19 14:40:20 +03:00
|
|
|
|
2017-08-04 19:27:16 +03:00
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
2017-05-19 14:40:20 +03:00
|
|
|
import { ComponentsRoutingModule, routedComponents } from './components-routing.module';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2017-08-04 19:27:16 +03:00
|
|
|
ThemeModule,
|
2017-05-19 14:40:20 +03:00
|
|
|
ComponentsRoutingModule,
|
2017-06-13 20:40:08 +03:00
|
|
|
TreeModule,
|
|
|
|
|
ToasterModule,
|
2017-05-19 14:40:20 +03:00
|
|
|
],
|
|
|
|
|
declarations: [
|
|
|
|
|
...routedComponents,
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class ComponentsModule { }
|