diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-26 11:39:23 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-26 11:39:23 +0700 |
| commit | 0a548e87febeab3d25ba7d5270b73b757f130b26 (patch) | |
| tree | 5f726f2564f6a38a871b2559d3762fb1ff2ad239 /src/pages/my/invoices.jsx | |
| parent | 42fed2490fe537b46a717eafaf1b1e4a5e0a08c8 (diff) | |
fix bug on update qty cart and create quotation page
Diffstat (limited to 'src/pages/my/invoices.jsx')
| -rw-r--r-- | src/pages/my/invoices.jsx | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/pages/my/invoices.jsx b/src/pages/my/invoices.jsx deleted file mode 100644 index 59059b2e..00000000 --- a/src/pages/my/invoices.jsx +++ /dev/null @@ -1,24 +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 InvoicesComponent from '@/lib/invoice/components/Invoices' - -export default function Invoices() { - return ( - <IsAuth> - <MobileView> - <AppLayout title='Invoice & Faktur Pajak'> - <InvoicesComponent /> - </AppLayout> - </MobileView> - - <DesktopView> - <BasicLayout> - <InvoicesComponent /> - </BasicLayout> - </DesktopView> - </IsAuth> - ) -} |
