mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 22:22:01 +00:00
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 3m9s
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>
|
|
)
|
|
}
|