Last active
March 15, 2021 10:27
-
-
Save jhahspu/58a9d305e069579e3c442e3ed60d8c6e to your computer and use it in GitHub Desktop.
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 { MatAutocompleteModule } from '@angular/material/autocomplete'; | |
// import { MatBadgeModule } from '@angular/material/badge'; | |
import { MatButtonModule } from '@angular/material/button'; | |
// import { MatButtonToggleModule } from '@angular/material/button-toggle'; | |
// import { MatCardModule } from '@angular/material/card'; | |
// import { MatCheckboxModule } from '@angular/material/checkbox'; | |
// import { MatDatepickerModule } from '@angular/material/datepicker'; | |
import { MatDialogModule } from '@angular/material/dialog'; | |
// import { MatDividerModule } from '@angular/material/divider'; | |
// import { MatExpansionModule } from '@angular/material/expansion'; | |
// 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 { MatNativeDateModule } from '@angular/material/core'; | |
// import { MatPaginatorModule } from '@angular/material/paginator'; | |
// import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; | |
// import { MatRadioModule } from '@angular/material/radio'; | |
// import { MatTableModule } from '@angular/material/table'; | |
// import { MatTabsModule } from '@angular/material/tabs'; | |
// import { MatToolbarModule } from '@angular/material/toolbar'; | |
// import { MatTooltipModule } from '@angular/material/tooltip'; | |
// import { MatSelectModule } from '@angular/material/select'; | |
// import { MatSidenavModule } from '@angular/material/sidenav'; | |
// import { MatSnackBarModule } from '@angular/material/snack-bar'; | |
// import { MatSortModule } from '@angular/material/sort'; | |
// import { MatStepperModule } from '@angular/material/stepper'; | |
const materialComponents = [ | |
// MatAutocompleteModule, | |
// MatBadgeModule, | |
MatButtonModule, | |
// MatButtonToggleModule, | |
// MatCardModule, | |
// MatCheckboxModule, | |
// MatDatepickerModule, | |
MatDialogModule, | |
// MatDividerModule, | |
// MatExpansionModule, | |
// MatFormFieldModule, | |
// MatGridListModule, | |
// MatIconModule, | |
// MatInputModule, | |
// MatListModule, | |
MatMenuModule, | |
// MatNativeDateModule, | |
// MatPaginatorModule, | |
// MatProgressSpinnerModule, | |
// MatRadioModule, | |
// MatTableModule, | |
// MatTabsModule, | |
// MatToolbarModule, | |
// MatTooltipModule, | |
// MatSelectModule, | |
// MatSidenavModule, | |
// MatSnackBarModule, | |
// MatSortModule, | |
// MatStepperModule | |
] | |
@NgModule({ | |
imports: [ | |
materialComponents | |
], | |
exports: [ | |
materialComponents | |
] | |
}) | |
export class MatCompsModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment