apps/design-land/src/app/sidebar/sidebar.module.ts
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { DaffArticleModule } from '@daffodil/design/article';
import { DesignLandSidebarRoutingModule } from './sidebar-routing.module';
import { DesignLandSidebarComponent } from './sidebar.component';
import { DesignLandArticleEncapsulatedModule } from '../core/article-encapsulated/article-encapsulated.module';
import { DesignLandExampleViewerModule } from '../core/code-preview/container/example-viewer.module';
@NgModule({
declarations: [
DesignLandSidebarComponent,
],
imports: [
CommonModule,
DaffArticleModule,
DesignLandExampleViewerModule,
DesignLandSidebarRoutingModule,
DesignLandArticleEncapsulatedModule,
],
})
export class DesignLandSidebarModule { }