summaryrefslogtreecommitdiff
path: root/src/pages/my/transactions.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/my/transactions.jsx')
-rw-r--r--src/pages/my/transactions.jsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/pages/my/transactions.jsx b/src/pages/my/transactions.jsx
new file mode 100644
index 00000000..30b9be07
--- /dev/null
+++ b/src/pages/my/transactions.jsx
@@ -0,0 +1,15 @@
+import AppLayout from '@/core/components/layouts/AppLayout'
+import IsAuth from '@/lib/auth/components/IsAuth'
+import dynamic from 'next/dynamic'
+
+const TransactionsComponent = dynamic(() => import('@/lib/transaction/components/Transactions'))
+
+export default function Transactions() {
+ return (
+ <IsAuth>
+ <AppLayout title='Transaksi'>
+ <TransactionsComponent />
+ </AppLayout>
+ </IsAuth>
+ )
+}