Initial commit

This commit is contained in:
Gagan7900
2026-07-13 11:57:09 +05:30
commit ac629ef540
26616 changed files with 795848 additions and 0 deletions
@@ -0,0 +1,9 @@
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' },
},
];