summaryrefslogtreecommitdiff
path: root/overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts
blob: b9d8945ce4406534e3a3508b5c5a77590af165ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { NgModule } from '@angular/core';
import { PageNotFoundComponent } from './page-not-found.component';
import { RouterModule } from '@angular/router';

@NgModule({
  declarations: [PageNotFoundComponent],
  exports: [PageNotFoundComponent],
  imports: [
    RouterModule.forChild([{
      path: '',
      pathMatch: 'full',
      component: PageNotFoundComponent
    }]),
  ]
})
export class PageNotFoundModule {}