refactor user accounts structure

This commit is contained in:
2026-03-16 00:35:34 +03:30
parent 20be653499
commit 3c9f6eed1d
286 changed files with 2812 additions and 1133 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Route } from '@angular/router';
export const PROVIDER_ROUTES = {
path: 'provider',
loadComponent: () => import('./layouts/layout.component').then((m) => m.LayoutComponent),
children: [
{
path: '',
loadComponent: () =>
import('./modules/dashboard/views/index.component').then((m) => m.DashboardComponent),
},
],
} as Route;