Skip to content

Instantly share code, notes, and snippets.

@molcik
Last active November 2, 2017 18:20
Show Gist options
  • Save molcik/724a21d9f6ed35db2a15130647cdeb73 to your computer and use it in GitHub Desktop.
Save molcik/724a21d9f6ed35db2a15130647cdeb73 to your computer and use it in GitHub Desktop.
import {BrowserModule} from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import { MatGridListModule, MatToolbarModule } from '@angular/material'; // <----- HERE
import {AppComponent} from './app.component';
@NgModule({
imports: [
BrowserModule,
CommonModule,
MatToolbarModule,
MatGridListModule, // <----- HERE
BrowserAnimationsModule
],
declarations: [AppComponent],
bootstrap: [AppComponent],
providers: []
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment