You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
979 B
TypeScript
26 lines
979 B
TypeScript
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 {}
|