projects/storefrontlib/shared/components/form/form-errors/form-errors.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormErrorsComponent } from './form-errors.component';
import { I18nModule } from '@spartacus/core';
@NgModule({
imports: [CommonModule, I18nModule],
declarations: [FormErrorsComponent],
exports: [FormErrorsComponent],
})
export class FormErrorsModule {}