mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-09 09:51:15 -05:00
14 lines
281 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|