2024-12-30 12:42:25 +03:00
|
|
|
import { Routes } from '@angular/router';
|
2025-01-07 12:16:16 +03:00
|
|
|
import { Access } from './access';
|
|
|
|
|
import { Login } from './login';
|
|
|
|
|
import { Error } from './error';
|
2024-12-30 12:42:25 +03:00
|
|
|
|
|
|
|
|
export default [
|
2025-01-03 17:20:47 +03:00
|
|
|
{ path: 'access', component: Access},
|
|
|
|
|
{ path: 'error', component: Error},
|
|
|
|
|
{ path: 'login', component: Login},
|
2024-12-30 12:42:25 +03:00
|
|
|
] as Routes;
|