summaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/shop/checkout/index.jsx10
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>
+ )
+}