blob: 7e78f21506c49cd8c3a87e074566ea5ddabd860a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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'
withFooter={false}
>
<CartComponent />
</AppLayout>
)
}
|