Created
May 1, 2019 17:59
-
-
Save rakia/9ca81d7f7a4df80d6c5efa5d72fd3d3c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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