graycoreio/daffodil

View on GitHub
apps/design-land/src/app/navbar/navbar.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 { DaffNavbarModule } from '@daffodil/design/navbar';

import { DesignLandNavbarRoutingModule } from './navbar-routing.module';
import { DesignLandNavbarComponent } from './navbar.component';
import { DesignLandArticleEncapsulatedModule } from '../core/article-encapsulated/article-encapsulated.module';
import { DesignLandExampleViewerModule } from '../core/code-preview/container/example-viewer.module';

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

    DesignLandNavbarRoutingModule,
    DesignLandExampleViewerModule,

    DaffNavbarModule,
    DaffArticleModule,
    DesignLandArticleEncapsulatedModule,
  ],
})
export class DesignLandNavbarModule { }