summaryrefslogtreecommitdiff
path: root/src/pages/my/invoices.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/my/invoices.jsx')
-rw-r--r--src/pages/my/invoices.jsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pages/my/invoices.jsx b/src/pages/my/invoices.jsx
new file mode 100644
index 00000000..12a5ff7e
--- /dev/null
+++ b/src/pages/my/invoices.jsx
@@ -0,0 +1,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>
+ )
+}