Files
KAFM-Project/app/dashboard/finance/costinvoice/page.tsx

18 lines
256 B
TypeScript

"use client"
import CostInvoicePortal from "@/components/dashboard/finance/costInvoice";
export default function CostInvoicePage() {
return (
<div className="p-6 mx-2">
<CostInvoicePortal/>
</div>
);
}