diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-11-13 16:46:14 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-11-13 16:46:14 +0700 |
| commit | 9622bff4d4902fcef81214236cc7ff035163e5e7 (patch) | |
| tree | 666a57d246533aa2b9f547ef306d1293adc5efad /src/pages/my/tempo | |
| parent | c873a401f0ea13e1881278e7977d4013d3a87394 (diff) | |
<iman> pengajuan tempo
Diffstat (limited to 'src/pages/my/tempo')
| -rw-r--r-- | src/pages/my/tempo/index.jsx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/pages/my/tempo/index.jsx b/src/pages/my/tempo/index.jsx new file mode 100644 index 00000000..e540fbda --- /dev/null +++ b/src/pages/my/tempo/index.jsx @@ -0,0 +1,27 @@ +import Seo from '@/core/components/Seo'; +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 MyTempo() { + return ( + <IsAuth> + <Seo title='Tempo - Indoteknik.com' /> + + <MobileView> + <AppLayout title='Pembayaran Tempo'> + <InvoicesComponent /> + </AppLayout> + </MobileView> + + <DesktopView> + <BasicLayout> + <InvoicesComponent /> + </BasicLayout> + </DesktopView> + </IsAuth> + ); +} |
