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

@ -1,7 +1,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 { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@ -13,7 +13,7 @@ import { AppComponent } from './app.component';
imports: [
BrowserModule,
FormsModule,
HttpClientModule,
HttpModule,
AppRoutingModule
],
providers: [],