Skip to content

Instantly share code, notes, and snippets.

@owrrpon
Created June 1, 2021 17:23
Show Gist options
  • Save owrrpon/58e01886fb9162e2ecad1caacfa5686f to your computer and use it in GitHub Desktop.
Save owrrpon/58e01886fb9162e2ecad1caacfa5686f to your computer and use it in GitHub Desktop.
initializing material importer module
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