app/dxa/dxa-entity/views/body-text-views/body-text.module.ts
import { NgModule } from '@angular/core';
import { DxaFieldsModule } from 'src/app/dxa/dxa-fields/dxa-fields.module';
import { BodyTextMainComponent } from './body-text-main/body-text-main.component';
import { BodyTextTopComponent } from './body-text-top/body-text-top.component';
import { BodyTextWithIntroMainComponent } from './body-text-with-intro-main/body-text-with-intro-main.component';
import { CommonModule } from '@angular/common';
import { BodyTextExpandableComponent } from './body-text-expandable/body-text-expandable.component';
import { NgbAccordionModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
imports: [
CommonModule,
DxaFieldsModule,
NgbAccordionModule,
],
declarations: [
BodyTextMainComponent,
BodyTextTopComponent,
BodyTextWithIntroMainComponent,
BodyTextExpandableComponent
],
entryComponents: [
BodyTextMainComponent,
BodyTextTopComponent,
BodyTextWithIntroMainComponent,
BodyTextExpandableComponent
]
})
export class BodyTextModule {}