Files
psp_panel/src/app/domains/provider/routes.ts
T

14 lines
369 B
TypeScript
Raw Normal View History

2026-03-16 00:35:34 +03:30
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;