Files
syscom-master-admin-ui/src/app/components/error/error.routes.ts
T
2026-07-24 11:55:27 +05:30

16 lines
292 B
TypeScript

import { Routes } from '@angular/router';
export const errorRoutingModule: Routes = [
{
path: 'error', children: [
{
path: 'error404',
loadComponent: () => import('./error404/error404').then( (m) => m.Error404 ),
title: 'YNEX - Error 404'
},
]
}
];