argos/dmp-frontend/src/common/modules/page-not-found/page-not-found.module.ts

13 lines
273 B
TypeScript

import { NgModule } from '@angular/core';
import { PageNotFoundComponent } from '@common/modules/page-not-found/page-not-found.component';
@NgModule({
imports: [
],
declarations: [
PageNotFoundComponent
],
entryComponents: []
})
export class PageNotFoundModule { }