graycoreio/daffodil

View on GitHub
apps/demo/src/app/misc/not-found/not-found.module.ts

Summary

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

import { NotFoundComponent } from './not-found.component';
import { BestSellersModule } from '../../product/containers/best-sellers/best-sellers.module';

@NgModule({
  imports: [
    CommonModule,
    BestSellersModule,
  ],
  declarations: [
    NotFoundComponent,
  ],
  exports: [
    NotFoundComponent,
  ],
})
export class NotFoundModule { }