Forked from pimatco/all-angular-material-components-imports.txt
Created
May 17, 2020 20:40
-
-
Save contactsamie/905814d4697dcf8108ab79e8bc305ec6 to your computer and use it in GitHub Desktop.
All Angular Material Components Imports from app.module.ts
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 { BrowserModule } from '@angular/platform-browser'; | |
| import { NgModule } from '@angular/core'; | |
| import { AppComponent } from './app.component'; | |
| //Angular Material Components | |
| import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; | |
| import {MatCheckboxModule} from '@angular/material'; | |
| import {MatButtonModule} from '@angular/material'; | |
| import {MatInputModule} from '@angular/material/input'; | |
| import {MatAutocompleteModule} from '@angular/material/autocomplete'; | |
| import {MatDatepickerModule} from '@angular/material/datepicker'; | |
| import {MatFormFieldModule} from '@angular/material/form-field'; | |
| import {MatRadioModule} from '@angular/material/radio'; | |
| import {MatSelectModule} from '@angular/material/select'; | |
| import {MatSliderModule} from '@angular/material/slider'; | |
| import {MatSlideToggleModule} from '@angular/material/slide-toggle'; | |
| import {MatMenuModule} from '@angular/material/menu'; | |
| import {MatSidenavModule} from '@angular/material/sidenav'; | |
| import {MatToolbarModule} from '@angular/material/toolbar'; | |
| import {MatListModule} from '@angular/material/list'; | |
| import {MatGridListModule} from '@angular/material/grid-list'; | |
| import {MatCardModule} from '@angular/material/card'; | |
| import {MatStepperModule} from '@angular/material/stepper'; | |
| import {MatTabsModule} from '@angular/material/tabs'; | |
| import {MatExpansionModule} from '@angular/material/expansion'; | |
| import {MatButtonToggleModule} from '@angular/material/button-toggle'; | |
| import {MatChipsModule} from '@angular/material/chips'; | |
| import {MatIconModule} from '@angular/material/icon'; | |
| import {MatProgressSpinnerModule} from '@angular/material/progress-spinner'; | |
| import {MatProgressBarModule} from '@angular/material/progress-bar'; | |
| import {MatDialogModule} from '@angular/material/dialog'; | |
| import {MatTooltipModule} from '@angular/material/tooltip'; | |
| import {MatSnackBarModule} from '@angular/material/snack-bar'; | |
| import {MatTableModule} from '@angular/material/table'; | |
| import {MatSortModule} from '@angular/material/sort'; | |
| import {MatPaginatorModule} from '@angular/material/paginator'; | |
| @NgModule({ | |
| declarations: [ | |
| AppComponent | |
| ], | |
| imports: [ | |
| BrowserModule, | |
| BrowserAnimationsModule, | |
| MatCheckboxModule, | |
| MatCheckboxModule, | |
| MatButtonModule, | |
| MatInputModule, | |
| MatAutocompleteModule, | |
| MatDatepickerModule, | |
| MatFormFieldModule, | |
| MatRadioModule, | |
| MatSelectModule, | |
| MatSliderModule, | |
| MatSlideToggleModule, | |
| MatMenuModule, | |
| MatSidenavModule, | |
| MatToolbarModule, | |
| MatListModule, | |
| MatGridListModule, | |
| MatCardModule, | |
| MatStepperModule, | |
| MatTabsModule, | |
| MatExpansionModule, | |
| MatButtonToggleModule, | |
| MatChipsModule, | |
| MatIconModule, | |
| MatProgressSpinnerModule, | |
| MatProgressBarModule, | |
| MatDialogModule, | |
| MatTooltipModule, | |
| MatSnackBarModule, | |
| MatTableModule, | |
| MatSortModule, | |
| MatPaginatorModule | |
| ], | |
| providers: [], | |
| bootstrap: [AppComponent] | |
| }) | |
| export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment