🎉 feat: initialization

This commit is contained in:
web
2025-11-26 19:56:16 -08:00
commit a801849fb2
553 changed files with 213088 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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>
</>
);
}