projects/storefrontlib/cms-components/content/tab-paragraph-container/tab-paragraph-container.module.ts
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { CmsConfig, I18nModule, provideDefaultConfig } from '@spartacus/core';
import { OutletModule } from '../../../cms-structure/outlet/outlet.module';
import { PageComponentModule } from '../../../cms-structure/page/component/page-component.module';
import { TabParagraphContainerComponent } from './tab-paragraph-container.component';
@NgModule({
imports: [CommonModule, PageComponentModule, OutletModule, I18nModule],
providers: [
provideDefaultConfig(<CmsConfig>{
cmsComponents: {
CMSTabParagraphContainer: {
component: TabParagraphContainerComponent,
},
},
}),
],
declarations: [TabParagraphContainerComponent],
exports: [TabParagraphContainerComponent],
})
export class TabParagraphContainerModule {}