import { PaymentGatewaysView } from "./_components/payment-gateways-view";
import { fetchBackendPaymentGateways } from "./_lib/payment-gateways-server-api";

export default async function PaymentGatewaysPage() {
  const result = await fetchBackendPaymentGateways();

  return <PaymentGatewaysView initialResult={result} />;
}
