"use client";
import { Suspense } from "react";
import { PaymentFailed } from "@/components/payments/PaymentFailed";
export default function MarketplacePaymentFailedPage() {
  return <Suspense><PaymentFailed /></Suspense>;
}
