import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { RateDocComponent } from './rate-doc.component'; @NgModule({ declarations: [ RateDocComponent ], imports: [ HttpModule, FormsModule, BrowserModule, BrowserAnimationsModule ], exports: [RateDocComponent] }) export class RateDocModule { }