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