argos/dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts

15 lines
508 B
TypeScript

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() { }
}