diff --git a/dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts b/dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts deleted file mode 100644 index e6b490fdc..000000000 --- a/dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { NgModule } from '@angular/core'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { CommonUiModule } from '../../../common/ui/common-ui.module'; -import { ContactContentComponent } from './contact-content.component'; - -@NgModule({ - imports: [CommonUiModule, FormsModule, ReactiveFormsModule], - declarations: [ContactContentComponent], - exports: [ContactContentComponent], - entryComponents: [ContactContentComponent] -}) -export class ContactContentModule { - constructor() { } -}