10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
export const billingRoutes: Routes = [
|
|
{
|
|
path: '',
|
|
loadComponent: () => import('./pages/billing-list/billing-list').then((m) => m.BillingList),
|
|
data: { childTitle: 'Billing', parentTitle: 'Platform', subParentTitle: 'Subscriptions' },
|
|
},
|
|
];
|