feat(purchase-status): implement purchase status page with loading and error handling
This commit is contained in:
@@ -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
|
||||
)
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user