14 lines
413 B
TypeScript
14 lines
413 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
import {NotFoundComponent} from "@app/routes/not-found/not-found.component";
|
|
|
|
const routes: Routes = [
|
|
{path: '', component: NotFoundComponent, title: 'Page non trouvée'}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class NotFoundRoutingModule { }
|