Revert "docs: update docs to use HttpClientModule instead of HttpModule (#22727)"

This reverts commit b5533e0ee5.
This commit is contained in:
Victor Berchet
2018-05-30 16:13:59 -07:00
parent 41225026e4
commit a634a5abbc
8 changed files with 20 additions and 17 deletions

View File

@ -3,7 +3,7 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { HttpModule } from '@angular/http';
import { AppComponent } from './app.component';
// import the feature module here so you can add it to the imports array below
@ -17,7 +17,7 @@ import { CustomerDashboardModule } from './customer-dashboard/customer-dashboard
imports: [
BrowserModule,
FormsModule,
HttpClientModule,
HttpModule,
CustomerDashboardModule // add the feature module here
],
providers: [],