app/dxa/dxa-entity/views/highlighted-content-views/highlighted-content.module.ts
import { NgModule } from '@angular/core';
import { DxaFieldsModule } from 'src/app/dxa/dxa-fields/dxa-fields.module';
import { HighlightedContentMainComponent } from './highlighted-content-main/highlighted-content-main.component';
import { HighlightedContentMainCardsComponent } from './highlighted-content-main-cards/highlighted-content-main-cards.component';
import { HighlightedContentMainWithoutImageComponent } from './highlighted-content-main-without-image/highlighted-content-main-without-image.component';
import { CommonModule } from '@angular/common';
import { DxaEntityModule } from '../../dxa-entity.module';
import { SharedModule } from 'src/app/shared/shared.module';
import { HighlightedContentService } from './highlighted-content.service';
import { RouterModule } from '@angular/router';
@NgModule({
imports: [
CommonModule,
DxaFieldsModule,
DxaEntityModule,
SharedModule,
RouterModule
],
declarations: [
HighlightedContentMainComponent,
HighlightedContentMainCardsComponent,
HighlightedContentMainWithoutImageComponent,
],
providers: [
HighlightedContentService
],
entryComponents: [
HighlightedContentMainComponent,
HighlightedContentMainCardsComponent,
HighlightedContentMainWithoutImageComponent
]
})
export class HighlightedContentModule { }