summaryrefslogtreecommitdiff
path: root/src/pages/my/invoices.jsx
blob: 12a5ff7e17cce130096df3cda5869e11e475744d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import AppLayout from '@/core/components/layouts/AppLayout'
import IsAuth from '@/lib/auth/components/IsAuth'
import InvoicesComponent from '@/lib/invoice/components/Invoices'

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