app/dxa/dxa-entity/views/product-info-views/product-info.module.ts
import { NgModule } from '@angular/core';
import { ProductInfoMainComponent } from './product-info-main/product-info-main.component';
import { DxaFieldsModule } from 'src/app/dxa/dxa-fields/dxa-fields.module';
import { NgbCarouselModule } from '@ng-bootstrap/ng-bootstrap';
import { CommonModule } from '@angular/common';
@NgModule({
imports: [
CommonModule,
DxaFieldsModule,
NgbCarouselModule
],
declarations: [ProductInfoMainComponent],
entryComponents: [ProductInfoMainComponent]
})
export class ProductInfoModule {}