Created
February 24, 2020 16:52
-
-
Save VicAv99/5f8564c9bcce04b5a41eaaa54c6d9580 to your computer and use it in GitHub Desktop.
Base Angular Material Module
This file contains hidden or 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 { NgModule } from '@angular/core'; | |
| import { MatButtonModule } from '@angular/material/button'; | |
| import { MatCardModule } from '@angular/material/card'; | |
| import { MatCheckboxModule } from '@angular/material/checkbox'; | |
| import { MatFormFieldModule } from '@angular/material/form-field'; | |
| import { MatGridListModule } from '@angular/material/grid-list'; | |
| import { MatIconModule } from '@angular/material/icon'; | |
| import { MatInputModule } from '@angular/material/input'; | |
| import { MatListModule } from '@angular/material/list'; | |
| import { MatMenuModule } from '@angular/material/menu'; | |
| import { MatSelectModule } from '@angular/material/select'; | |
| import { MatSidenavModule } from '@angular/material/sidenav'; | |
| import { MatSliderModule } from '@angular/material/slider'; | |
| import { MatSnackBarModule } from '@angular/material/snack-bar'; | |
| import { MatTableModule } from '@angular/material/table'; | |
| import { MatToolbarModule } from '@angular/material/toolbar'; | |
| import { MatButtonToggleModule } from '@angular/material/button-toggle'; | |
| @NgModule({ | |
| exports: [ | |
| MatButtonModule, | |
| MatCardModule, | |
| MatCheckboxModule, | |
| MatFormFieldModule, | |
| MatGridListModule, | |
| MatIconModule, | |
| MatInputModule, | |
| MatListModule, | |
| MatMenuModule, | |
| MatSelectModule, | |
| MatSidenavModule, | |
| MatSliderModule, | |
| MatSnackBarModule, | |
| MatTableModule, | |
| MatToolbarModule, | |
| MatButtonToggleModule | |
| ] | |
| }) | |
| export class MaterialModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment