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

14 lines
429 B
TypeScript
Raw Normal View History

2019-05-21 15:42:28 +02:00
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() { }
}