import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { NgModule } from '@angular/core'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { RouterModule } from '@angular/router'; import { routes } from './app.routing'; import { HttpModule } from '@angular/http'; import { TranslateModule } from '@ngx-translate/core'; @NgModule({ declarations: [ AppComponent, ], imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, ReactiveFormsModule, TranslateModule.forRoot(), HttpModule, RouterModule.forRoot(routes), ], bootstrap: [ AppComponent ], providers: [], entryComponents: [] }) export class AppModule { }