2019-06-11 10:25:32 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-12-11 15:51:03 +01:00
|
|
|
import { FormattingModule } from '@app/core/formatting.module';
|
|
|
|
import { AutoCompleteModule } from '@app/library/auto-complete/auto-complete.module';
|
|
|
|
import { ConfirmationDialogModule } from '@common/modules/confirmation-dialog/confirmation-dialog.module';
|
|
|
|
import { ExportMethodDialogModule } from '@app/library/export-method-dialog/export-method-dialog.module';
|
|
|
|
import { UrlListingModule } from '@app/library/url-listing/url-listing.module';
|
|
|
|
import { DmpOverviewComponent } from '@app/ui/dmp/overview/dmp-overview.component';
|
|
|
|
import { CommonFormsModule } from '@common/forms/common-forms.module';
|
|
|
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
2019-06-11 10:25:32 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
CommonFormsModule,
|
|
|
|
UrlListingModule,
|
|
|
|
ConfirmationDialogModule,
|
|
|
|
ExportMethodDialogModule,
|
|
|
|
FormattingModule,
|
|
|
|
AutoCompleteModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DmpOverviewComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class DmpOverviewModule { }
|