export const dynamic = 'force-dynamic';

import { Separator } from "@/components/ui/separator";
import { PaymentHistory } from "@/components/user/payments/payment-history";


export default function PaymentPage() {



  return (
    <div className="space-y-2 py-5 px-2">
      <div>
        <h1 className="text-3xl font-bold tracking-tight">Your payments history</h1>
        <p className="text-muted-foreground">
          View your payments history here
        </p>
      </div>
      <Separator />

      <PaymentHistory />

    </div>
  );
}
