summaryrefslogtreecommitdiff
path: root/src/pages/shop/cart.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/shop/cart.jsx')
-rw-r--r--src/pages/shop/cart.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pages/shop/cart.jsx b/src/pages/shop/cart.jsx
index 20279e0c..735ea19f 100644
--- a/src/pages/shop/cart.jsx
+++ b/src/pages/shop/cart.jsx
@@ -1,5 +1,7 @@
-import AppLayout from "@/core/components/layouts/AppLayout"
-import CartComponent from "@/lib/cart/components/Cart"
+import dynamic from "next/dynamic"
+
+const AppLayout = dynamic(() => import("@/core/components/layouts/AppLayout"))
+const CartComponent = dynamic(() => import("@/lib/cart/components/Cart"))
export default function Cart() {
return (