feature-libs/organization/administration/components/cost-center/form/cost-center-form.module.ts
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { NgSelectModule } from '@ng-select/ng-select';
import { CurrencyService, I18nModule, UrlModule } from '@spartacus/core';
import { OrgUnitService } from '@spartacus/organization/administration/core';
import { FormErrorsModule } from '@spartacus/storefront';
import { ItemActiveModule } from '../../shared/item-active.module';
import { FormModule } from '../../shared/form/form.module';
import { CostCenterFormComponent } from './cost-center-form.component';
@NgModule({
imports: [
CommonModule,
RouterModule,
FormModule,
NgSelectModule,
UrlModule,
I18nModule,
ReactiveFormsModule,
FormErrorsModule,
ItemActiveModule,
],
declarations: [CostCenterFormComponent],
exports: [CostCenterFormComponent],
providers: [CurrencyService, OrgUnitService],
})
export class CostCenterFormModule {}