blob: 735ea19f28b69d4fc185abf2ecc55b578f2d3df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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 (
<AppLayout title="Keranjang">
<CartComponent />
</AppLayout>
)
}
|