2025-03-11 20:06:12 +07:00

14 lines
281 B
TypeScript

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