mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 22:41:59 +00:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
|
import DevicesForPayment from '@/components/devices-for-payment'
|
||
|
import prisma from '@/lib/db';
|
||
|
import React from 'react'
|
||
|
|
||
|
export default async function DevicesToPay() {
|
||
|
const billFormula = await prisma.billFormula.findFirst();
|
||
|
return (
|
||
|
<div>
|
||
|
<DevicesForPayment billFormula={billFormula ?? undefined} />
|
||
|
</div>
|
||
|
)
|
||
|
}
|