assets/angular/dmp/dmp.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ReactiveFormsModule, FormsModule} from "@angular/forms";
import { HttpModule } from '@angular/http';
import { DmpFormComponent } from './dmp-form.component';
import { SharedModule } from '../shared/shared.module';
@NgModule({
imports: [ BrowserModule, HttpModule, ReactiveFormsModule, SharedModule ],
declarations: [ DmpFormComponent ],
providers: [ ],
bootstrap: [ DmpFormComponent ],
entryComponents: [ ]
})
export class DmpModule { }