diff options
Diffstat (limited to 'src/pages/shop/checkout/index.jsx')
| -rw-r--r-- | src/pages/shop/checkout/index.jsx | 13 |
1 files changed, 13 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..015a11b3 --- /dev/null +++ b/src/pages/shop/checkout/index.jsx @@ -0,0 +1,13 @@ +import AppLayout from '@/core/components/layouts/AppLayout' +import IsAuth from '@/lib/auth/components/IsAuth' +import CheckoutComponent from '@/lib/checkout/components/Checkout' + +export default function Checkout() { + return ( + <IsAuth> + <AppLayout title='Checkout'> + <CheckoutComponent /> + </AppLayout> + </IsAuth> + ) +} |
