Skip to content

Instantly share code, notes, and snippets.

@rakia
Created May 1, 2019 17:59
Show Gist options
  • Save rakia/9ca81d7f7a4df80d6c5efa5d72fd3d3c to your computer and use it in GitHub Desktop.
Save rakia/9ca81d7f7a4df80d6c5efa5d72fd3d3c 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 { MatSnackBarModule, MatTableModule } from '@angular/material';
import { AppComponent } from './app.component';
@NgModule({
declarations: [ AppComponent ],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatTableModule,
MatSnackBarModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment