graycoreio/daffodil

View on GitHub
apps/design-land/src/app/callout/callout.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 { DesignLandCalloutRoutingModule } from './callout-routing.module';
import { DesignLandCalloutComponent } from './callout.component';
import { DesignLandExampleViewerModule } from '../core/code-preview/container/example-viewer.module';

@NgModule({
  declarations: [
    DesignLandCalloutComponent,
  ],
  imports: [
    CommonModule,
    RouterModule,

    DesignLandCalloutRoutingModule,

    DaffArticleModule,
    DesignLandExampleViewerModule,
  ],
})
export class DesignLandCalloutModule {
}