You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
979 B
25 lines
979 B
import { CommonModule } from '@angular/common'; |
|
import { NgModule } from '@angular/core'; |
|
import { ReactiveFormsModule } from '@angular/forms'; |
|
import { TranslateModule } from '@ngx-translate/core'; |
|
|
|
import { SharedModule } from '../../shared/shared.module'; |
|
import { AdministrationRoutingModule } from './administration-routing.module'; |
|
import { AdministrationComponent } from './administration.component'; |
|
import { StepperComponent } from './stepper/stepper.component'; |
|
import { NamingComponent } from './naming/naming.component'; |
|
import { FormComponent } from './form/form.component'; |
|
import { DateValueAccessorModule } from 'angular-date-value-accessor'; |
|
|
|
@NgModule({ |
|
declarations: [AdministrationComponent, StepperComponent, NamingComponent, FormComponent], |
|
imports: [ |
|
AdministrationRoutingModule, |
|
CommonModule, |
|
ReactiveFormsModule, |
|
SharedModule, |
|
TranslateModule.forChild({ extend: true }), |
|
DateValueAccessorModule, |
|
], |
|
}) |
|
export class AdministrationModule {}
|
|
|