blob: 20279e0c0d57adf42f64356b5b9d22a070d7a207 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import AppLayout from "@/core/components/layouts/AppLayout"
import CartComponent from "@/lib/cart/components/Cart"
export default function Cart() {
return (
<AppLayout title="Keranjang">
<CartComponent />
</AppLayout>
)
}
|