feat(purchase-status): implement purchase status page with loading and error handling

This commit is contained in:
2026-07-07 11:21:27 -03:00
parent cb0d1e4d77
commit 910f367851
9 changed files with 237 additions and 0 deletions

View File

@@ -52,6 +52,19 @@ export const routes: Routes = [
import('./pages/checkout-page/checkout-page.component').then(
(m) => m.CheckoutPageComponent
)
},
{
path: 'checkout/status',
component: SimpleLayoutComponent,
children: [
{
path: ':id',
loadComponent: () =>
import('./pages/purchase-status-page/purchase-status-page.component').then(
(m) => m.PurchaseStatusPageComponent
)
}
]
}
]
}