diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 12:03:05 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 12:03:05 +0700 |
| commit | 757b69f4d814ec4890c209f7a9fdf3d9940157d9 (patch) | |
| tree | 469f39b64c1e2193af8299a940fc41c4a7edfad5 /src/pages | |
| parent | f66b12fd1d0b83af0d7230d7b1565fbe00afbe3c (diff) | |
fix
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/shop/checkout/index.jsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pages/shop/checkout/index.jsx b/src/pages/shop/checkout/index.jsx new file mode 100644 index 00000000..5e8f2663 --- /dev/null +++ b/src/pages/shop/checkout/index.jsx @@ -0,0 +1,10 @@ +import AppLayout from '@/core/components/layouts/AppLayout' +import CheckoutComponent from '@/lib/checkout/components/Checkout' + +export default function Checkout() { + return ( + <AppLayout title='Checkout'> + <CheckoutComponent /> + </AppLayout> + ) +} |
