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.
36 lines
1.3 KiB
36 lines
1.3 KiB
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'; |
|
import { ClassicChoicesComponent } from './form/classic-choices/classic-choices.component'; |
|
import { StepOneComponent } from './form/step-one/step-one.component'; |
|
import { StepTwoComponent } from './form/step-two/step-two.component'; |
|
|
|
@NgModule({ |
|
declarations: [ |
|
AdministrationComponent, |
|
StepperComponent, |
|
NamingComponent, |
|
FormComponent, |
|
ClassicChoicesComponent, |
|
StepOneComponent, |
|
StepTwoComponent, |
|
], |
|
imports: [ |
|
AdministrationRoutingModule, |
|
CommonModule, |
|
ReactiveFormsModule, |
|
SharedModule, |
|
TranslateModule.forChild({ extend: true }), |
|
DateValueAccessorModule, |
|
], |
|
}) |
|
export class AdministrationModule {}
|
|
|