blob: 97f9884361120be0d3ccd5baf6316b5e3c4d7581 (
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>
)
}
|