import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { TabsetConfig, TabsModule } from 'ngx-bootstrap/tabs'; import { DemoComponentsModule } from '../../../../demo/components/demo-components.module'; import { BlockCopyModule } from '../block-copy.module'; import { BlockCopyExampleComponent } from './block-copy-example.component'; import { BlockCopyBasicExampleComponent } from './block-copy-basic-example.component'; import { BlockCopyNotificationExampleComponent } from './block-copy-notification-example.component'; import { BlockCopyExpandedExampleComponent } from './block-copy-expanded-example.component'; import { ToastNotificationListModule } from '../../../notification/toast-notification-list/toast-notification-list.module'; @NgModule({ declarations: [ BlockCopyExampleComponent, BlockCopyBasicExampleComponent, BlockCopyNotificationExampleComponent, BlockCopyExpandedExampleComponent ], imports: [ CommonModule, BlockCopyModule, DemoComponentsModule, TabsModule.forRoot(), ToastNotificationListModule ], providers: [ TabsetConfig ] }) export class BlockCopyExampleModule { constructor() {} }