import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { TabContainerComponent } from './tab-container.component'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { MatTabsModule, MAT_TAB_GROUP } from '@angular/material/tabs'; @NgModule({ declarations: [TabContainerComponent], imports: [CommonModule, BrowserModule, BrowserAnimationsModule, MatTabsModule], exports: [TabContainerComponent], providers: [ { provide: MAT_TAB_GROUP, useValue: undefined, }, ], }) export class TabContainerModule {}