mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-14 07:45:39 +01:00
17 lines
395 B
TypeScript
17 lines
395 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { RouterModule, Routes } from '@angular/router';
|
||
|
|
import { PageNotFoundComponent } from './pagenotfound.component';
|
||
|
|
|
||
|
|
const routes: Routes = [
|
||
|
|
{
|
||
|
|
path: 'pagenotfound',
|
||
|
|
component: PageNotFoundComponent,
|
||
|
|
},
|
||
|
|
];
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [RouterModule.forChild(routes)],
|
||
|
|
exports: [RouterModule],
|
||
|
|
})
|
||
|
|
export class PageNotFoundRoutingModule {}
|