Skip to content

Instantly share code, notes, and snippets.

@ismaproco
Last active July 4, 2018 16:38
Show Gist options
  • Save ismaproco/4d652b74f50f7b572c2f5b83c4fecc73 to your computer and use it in GitHub Desktop.
Save ismaproco/4d652b74f50f7b572c2f5b83c4fecc73 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 { MatInputModule, MatButtonModule, MatSelectModule, MatIconModule } from '@angular/material';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
BrowserAnimationsModule,
MatInputModule,
MatButtonModule,
MatSelectModule,
MatIconModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment