Files
Picsur/frontend/src/app/routes/pagenotfound/processing.routing.module.ts

17 lines
395 B
TypeScript
Raw Normal View History

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 {}