argos/dmp-frontend/src/app/library/export-method-dialog/export-method-dialog.module.ts

14 lines
429 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonUiModule } from '../../common/ui/common-ui.module';
import { ExportMethodDialogComponent } from './export-method-dialog.component';
@NgModule({
imports: [CommonUiModule],
declarations: [ExportMethodDialogComponent],
exports: [ExportMethodDialogComponent],
entryComponents: [ExportMethodDialogComponent]
})
export class ExportMethodDialogModule {
constructor() { }
}