From 0a548e87febeab3d25ba7d5270b73b757f130b26 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Wed, 26 Apr 2023 11:39:23 +0700 Subject: fix bug on update qty cart and create quotation page --- src/pages/my/transactions/index.jsx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/pages/my/transactions/index.jsx (limited to 'src/pages/my/transactions/index.jsx') 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 ( + + + + + + + + + + + + + + ) +} -- cgit v1.2.3