summaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/my/transactions.jsx17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/pages/my/transactions.jsx b/src/pages/my/transactions.jsx
index 30b9be07..a8ca78b8 100644
--- a/src/pages/my/transactions.jsx
+++ b/src/pages/my/transactions.jsx
@@ -1,4 +1,7 @@
import AppLayout from '@/core/components/layouts/AppLayout'
+import BasicLayout from '@/core/components/layouts/BasicLayout'
+import DesktopView from '@/core/components/views/DesktopView'
+import MobileView from '@/core/components/views/MobileView'
import IsAuth from '@/lib/auth/components/IsAuth'
import dynamic from 'next/dynamic'
@@ -7,9 +10,17 @@ const TransactionsComponent = dynamic(() => import('@/lib/transaction/components
export default function Transactions() {
return (
<IsAuth>
- <AppLayout title='Transaksi'>
- <TransactionsComponent />
- </AppLayout>
+ <MobileView>
+ <AppLayout title='Transaksi'>
+ <TransactionsComponent />
+ </AppLayout>
+ </MobileView>
+
+ <DesktopView>
+ <BasicLayout>
+ <TransactionsComponent />
+ </BasicLayout>
+ </DesktopView>
</IsAuth>
)
}