Last active
December 4, 2018 21:37
-
-
Save oleersoy/b17fa76570e13fa96e05521f98ac4e6f 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 { | |
MatButtonModule, | |
MatIconModule, | |
MatToolbarModule | |
} from '@angular/material'; | |
const modules = [ | |
MatButtonModule, | |
MatIconModule, | |
MatToolbarModule, | |
]; | |
@NgModule({ | |
imports: modules, | |
exports: modules, | |
}) | |
export class MaterialModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment