feat(purchase-detail): add purchase detail page with routing and mock data

This commit is contained in:
2026-07-08 13:40:29 -03:00
parent 1f2ca09b81
commit e06edaaa42
6 changed files with 306 additions and 2 deletions

View File

@@ -88,6 +88,13 @@ export const routes: Routes = [
(m) => m.PurchasesPage
)
},
{
path: 'compras/:id',
loadComponent: () =>
import('./pages/account-page/pages/purchase-detail-page/purchase-detail-page').then(
(m) => m.PurchaseDetailPage
)
},
{
path: '',
redirectTo: 'datos-personales',