graycoreio/daffodil

View on GitHub
apps/design-land/src/app/tree/tree.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';

import { DaffArticleModule } from '@daffodil/design/article';
import { DaffTreeModule } from '@daffodil/design/tree';

import { DesignLandTreeRoutingModule } from './tree-routing-module';
import { DesignLandTreeComponent } from './tree.component';
import { DesignLandArticleEncapsulatedModule } from '../core/article-encapsulated/article-encapsulated.module';
import { DesignLandExampleViewerModule } from '../core/code-preview/container/example-viewer.module';

@NgModule({
  declarations: [
    DesignLandTreeComponent,
  ],
  imports: [
    CommonModule,
    RouterModule,
    DesignLandTreeRoutingModule,
    DesignLandExampleViewerModule,
    DesignLandArticleEncapsulatedModule,

    DaffArticleModule,
    DaffTreeModule,
  ],
})
export class DesignLandTreeModule {}