Skip to content

Instantly share code, notes, and snippets.

@mazipan
Created May 29, 2017 08:09
Show Gist options
  • Save mazipan/964bcce3e29253e8b38e7a2be1572c7d to your computer and use it in GitHub Desktop.
Save mazipan/964bcce3e29253e8b38e7a2be1572c7d to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment