summaryrefslogtreecommitdiff
path: root/src/pages/my/transactions.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-04-26 11:39:23 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-04-26 11:39:23 +0700
commit0a548e87febeab3d25ba7d5270b73b757f130b26 (patch)
tree5f726f2564f6a38a871b2559d3762fb1ff2ad239 /src/pages/my/transactions.jsx
parent42fed2490fe537b46a717eafaf1b1e4a5e0a08c8 (diff)
fix bug on update qty cart and create quotation page
Diffstat (limited to 'src/pages/my/transactions.jsx')
-rw-r--r--src/pages/my/transactions.jsx26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/pages/my/transactions.jsx b/src/pages/my/transactions.jsx
deleted file mode 100644
index a8ca78b8..00000000
--- a/src/pages/my/transactions.jsx
+++ /dev/null
@@ -1,26 +0,0 @@
-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 Transactions() {
- return (
- <IsAuth>
- <MobileView>
- <AppLayout title='Transaksi'>
- <TransactionsComponent />
- </AppLayout>
- </MobileView>
-
- <DesktopView>
- <BasicLayout>
- <TransactionsComponent />
- </BasicLayout>
- </DesktopView>
- </IsAuth>
- )
-}