Skip to content

Instantly share code, notes, and snippets.

@Seanmclem
Created June 16, 2018 02:34
Show Gist options
  • Save Seanmclem/cafb51679e96ddb39535ce1907a86402 to your computer and use it in GitHub Desktop.
Save Seanmclem/cafb51679e96ddb39535ce1907a86402 to your computer and use it in GitHub Desktop.
//app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { HttpClientModule, HttpClientJsonpModule } from '@angular/common/http';
@NgModule({
declarations: [
//...
],
imports: [
BrowserModule,
HttpClientModule,
HttpClientJsonpModule,
]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment