Created
November 19, 2019 21:10
-
-
Save oleersoy/1d0f00c4a4cc4ec2f955f5bbd9e05c9e 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 { NgModule } from '@angular/core'; | |
import { | |
MatInputModule, | |
MatCardModule, | |
MatButtonModule, | |
MatSidenavModule, | |
MatListModule, | |
MatIconModule, | |
MatToolbarModule, | |
MatProgressSpinnerModule | |
} from '@angular/material'; | |
@NgModule({ | |
imports: [ | |
MatInputModule, | |
MatCardModule, | |
MatButtonModule, | |
MatSidenavModule, | |
MatListModule, | |
MatIconModule, | |
MatToolbarModule, | |
MatProgressSpinnerModule, | |
], | |
exports: [ | |
MatInputModule, | |
MatCardModule, | |
MatButtonModule, | |
MatSidenavModule, | |
MatListModule, | |
MatIconModule, | |
MatToolbarModule, | |
MatProgressSpinnerModule, | |
], | |
}) | |
export class MaterialModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment