Files
psp_panel/src/views/pages/auth/auth.routes.ts
T

8 lines
313 B
TypeScript
Raw Normal View History

2024-12-30 12:42:25 +03:00
import { Routes } from '@angular/router';
export default [
2025-01-03 12:53:05 +03:00
{ path: 'access', loadComponent: () => import('./access').then(c => c.Access)},
{ path: 'error', loadComponent: () => import('./error').then(c => c.Error)},
{ path: 'login', loadComponent: () => import('./login').then(c => c.Login)},
2024-12-30 12:42:25 +03:00
] as Routes;