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