dependencies dependencies cluster_ProductIntroModule cluster_ProductIntroModule_declarations cluster_ProductIntroModule_exports cluster_ProductIntroModule_imports ProductIntroComponent ProductIntroComponent ProductIntroModule ProductIntroModule ProductIntroComponent->ProductIntroModule ProductIntroComponent ProductIntroComponent ProductIntroModule->ProductIntroComponent I18nModule I18nModule I18nModule->ProductIntroModule StarRatingModule StarRatingModule StarRatingModule->ProductIntroModule

File

projects/storefrontlib/cms-components/product/product-intro/product-intro.module.ts

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { CmsConfig, I18nModule, provideDefaultConfig } from '@spartacus/core';
import { StarRatingModule } from '../../../shared/components/star-rating/star-rating.module';
import { ProductIntroComponent } from './product-intro.component';

@NgModule({
  imports: [CommonModule, I18nModule, StarRatingModule],
  providers: [
    provideDefaultConfig(<CmsConfig>{
      cmsComponents: {
        ProductIntroComponent: {
          component: ProductIntroComponent,
        },
      },
    }),
  ],
  declarations: [ProductIntroComponent],
  exports: [ProductIntroComponent],
})
export class ProductIntroModule {}

result-matching ""

    No results matching ""