Skip to content

Instantly share code, notes, and snippets.

@diegohordi
Created March 3, 2020 09:29
Show Gist options
  • Save diegohordi/c330773b473697dadb55f8e6cebfe31d to your computer and use it in GitHub Desktop.
Save diegohordi/c330773b473697dadb55f8e6cebfe31d to your computer and use it in GitHub Desktop.
Map input
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {AppComponent} from './app.component';
import {LocationService} from './services/location.service';
import {HttpClientModule} from '@angular/common/http';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HttpClientModule
],
providers: [
LocationService
],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment