2018-09-18 15:51:57 +02:00
|
|
|
import { CommonModule } from '@angular/common';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
2018-09-18 15:51:57 +02:00
|
|
|
import { ConfigFieldComponent } from './components/config-field/config-field.component';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { ConfigListComponent } from './components/config-list/config-list.component';
|
2019-05-27 18:38:43 +02:00
|
|
|
import { ConfigOverviewComponent } from './components/config-overview/config-overview.component';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { ConfigRoutingModule } from './config-routing.module';
|
2019-02-01 09:51:18 +01:00
|
|
|
import { CustomTranslationComponent } from './components/custom-translation/custom-translation.component';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
2018-09-18 15:51:57 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, ConfigRoutingModule, SharedModule],
|
2020-04-01 12:46:06 +02:00
|
|
|
declarations: [ConfigOverviewComponent, ConfigListComponent, ConfigFieldComponent, CustomTranslationComponent]
|
2018-09-18 15:51:57 +02:00
|
|
|
})
|
|
|
|
export class ConfigModule {}
|