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;
|