dependencies dependencies cluster_PaymentFormModule cluster_PaymentFormModule_declarations cluster_PaymentFormModule_exports cluster_PaymentFormModule_imports PaymentFormComponent PaymentFormComponent PaymentFormModule PaymentFormModule PaymentFormComponent->PaymentFormModule PaymentFormComponent PaymentFormComponent PaymentFormModule->PaymentFormComponent CardModule CardModule CardModule->PaymentFormModule FormErrorsModule FormErrorsModule FormErrorsModule->PaymentFormModule I18nModule I18nModule I18nModule->PaymentFormModule IconModule IconModule IconModule->PaymentFormModule SpinnerModule SpinnerModule SpinnerModule->PaymentFormModule

File

feature-libs/checkout/components/components/payment-method/payment-form/payment-form.module.ts

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';
import {
  CardModule,
  FormErrorsModule,
  IconModule,
  SpinnerModule,
} from '@spartacus/storefront';
import { PaymentFormComponent } from './payment-form.component';

@NgModule({
  imports: [
    CommonModule,
    ReactiveFormsModule,
    NgSelectModule,
    CardModule,
    I18nModule,
    IconModule,
    SpinnerModule,
    FormErrorsModule,
  ],
  declarations: [PaymentFormComponent],
  exports: [PaymentFormComponent],
})
export class PaymentFormModule {}

result-matching ""

    No results matching ""