crh225/angular-github-issues

View on GitHub
apps/angular-github-issues/src/app/core/components/not-found/not-found.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { NgModule } from '@angular/core';
import { NotFoundComponent } from './not-found.component';
import { RouterModule } from '@angular/router';
@NgModule({
 declarations: [ NotFoundComponent ],
 imports: [RouterModule],
 exports:  [ NotFoundComponent ]
})
export class NotFoundModule {
}