integration-libs/digital-payments/src/checkout/cms-components/dp-payment-method/dp-payment-form/dp-payment-form.module.ts
import { SpinnerModule } from '@spartacus/storefront';
import { DpPaymentFormComponent } from './dp-payment-form.component';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { NgSelectModule } from '@ng-select/ng-select';
import { I18nModule } from '@spartacus/core';
@NgModule({
imports: [
CommonModule,
ReactiveFormsModule,
NgSelectModule,
I18nModule,
SpinnerModule,
],
declarations: [DpPaymentFormComponent],
exports: [DpPaymentFormComponent],
})
export class DpPaymentFormModule {}