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

This reverts commit 3ed7fc6686.
This commit is contained in:
Victor Berchet
2018-05-30 16:12:49 -07:00
parent accda00190
commit 27d811a7ce
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: [],