app/dxa/dxa-entity/views/cad-download/cad-download.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CadDownloadComponent } from './cad-download.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [
CadDownloadComponent
],
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
NgbPopoverModule,
],
exports: [
CadDownloadComponent
],
entryComponents: [
CadDownloadComponent
]
})
export class CadDownloadModule { }