import { CartPageClient } from "@/components/sections/cart/cart-page-client";
import type { StorefrontCart } from "@/types/storefront";

export function CartPageSection({ cart }: { cart: StorefrontCart }) {
  return <CartPageClient initialCart={cart} />;
}
