Files
hi-frontend/apps/admin/src/sections/payment/index.tsx
T
2025-11-26 19:56:16 -08:00

14 lines
289 B
TypeScript

import Billing from "../dashboard/components/billing";
import PaymentTable from "./payment-table";
export default function Payment() {
return (
<>
<PaymentTable />
<div className="mt-5 flex flex-col gap-3">
<Billing type="payment" />
</div>
</>
);
}