Created
June 1, 2021 17:23
-
-
Save owrrpon/58e01886fb9162e2ecad1caacfa5686f to your computer and use it in GitHub Desktop.
initializing material importer 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 {MatTabsModule} from '@angular/material/tabs'; | |
const MATERIAL_COMPONENTS = [ | |
MatTabsModule | |
]; | |
@NgModule({ | |
imports: MATERIAL_COMPONENTS, | |
exports: MATERIAL_COMPONENTS | |
}) | |
export class AppMaterialImporterModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment