summaryrefslogtreecommitdiff
path: root/src/pages/my/address/create.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/my/address/create.jsx')
-rw-r--r--src/pages/my/address/create.jsx17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/pages/my/address/create.jsx b/src/pages/my/address/create.jsx
index ec17f987..be645853 100644
--- a/src/pages/my/address/create.jsx
+++ b/src/pages/my/address/create.jsx
@@ -1,13 +1,24 @@
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 CreateAddressComponent from '@/lib/address/components/CreateAddress'
import IsAuth from '@/lib/auth/components/IsAuth'
export default function CreateAddress() {
return (
<IsAuth>
- <AppLayout title='Tambah Alamat'>
- <CreateAddressComponent />
- </AppLayout>
+ <MobileView>
+ <AppLayout title='Tambah Alamat'>
+ <CreateAddressComponent />
+ </AppLayout>
+ </MobileView>
+
+ <DesktopView>
+ <BasicLayout>
+ <CreateAddressComponent />
+ </BasicLayout>
+ </DesktopView>
</IsAuth>
)
}