diff options
Diffstat (limited to 'src/pages/my/transactions/index.jsx')
| -rw-r--r-- | src/pages/my/transactions/index.jsx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/pages/my/transactions/index.jsx b/src/pages/my/transactions/index.jsx new file mode 100644 index 00000000..91482a39 --- /dev/null +++ b/src/pages/my/transactions/index.jsx @@ -0,0 +1,26 @@ +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' + +const TransactionsComponent = dynamic(() => import('@/lib/transaction/components/Transactions')) + +export default function MyTransactions() { + return ( + <IsAuth> + <MobileView> + <AppLayout title='Transaksi'> + <TransactionsComponent /> + </AppLayout> + </MobileView> + + <DesktopView> + <BasicLayout> + <TransactionsComponent /> + </BasicLayout> + </DesktopView> + </IsAuth> + ) +} |
