i701 aa18484475
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 13m55s
refactor: add tryCatch utility for error handling, update device-related components and types, and clean up unused code in payment actions
2025-04-05 16:07:11 +05:00

11 lines
199 B
TypeScript

import DevicesForPayment from "@/components/devices-for-payment";
import React from "react";
export default async function DevicesToPay() {
return (
<div>
<DevicesForPayment />
</div>
);
}