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

13 lines
416 B
TypeScript

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