Skip to content

Instantly share code, notes, and snippets.

@timdeschryver
Created November 3, 2019 16:23
Show Gist options
  • Select an option

  • Save timdeschryver/60ac501a0da5aa191dcd026fd08d4684 to your computer and use it in GitHub Desktop.

Select an option

Save timdeschryver/60ac501a0da5aa191dcd026fd08d4684 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser'
import { NgModule } from '@angular/core'
import { GoogleMapsModule } from '@angular/google-maps'
import { AppComponent } from './app.component'
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, GoogleMapsModule],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment