diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-24 17:05:47 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-24 17:05:47 +0700 |
| commit | bc8e76f00eaa74eb0cc51b79662a53ef34a3ed67 (patch) | |
| tree | 365095a621012eb756e956a0bbb84b602ab7844c /src/pages | |
| parent | 61c642265367b725b8d5052beca0b34c040393b2 (diff) | |
-
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/my/transactions.jsx | 17 |
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> ) } |
