summaryrefslogtreecommitdiff
path: root/src/pages/my/invoices.jsx
blob: 048421104304b97f12ce7ffdd48a654f7383b2c2 (plain)
1
2
3
4
5
6
7
8
9
10
import AppLayout from "@/core/components/layouts/AppLayout"
import InvoicesComponent from "@/lib/invoice/components/Invoices"

export default function Invoices() {
  return (
    <AppLayout title="Invoice & Faktur Pajak">
      <InvoicesComponent />
    </AppLayout>
  )
}