summaryrefslogtreecommitdiff
path: root/src/pages/my/address/create.jsx
blob: ec17f987fefab001638331c78b8fd999baf764b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import AppLayout from '@/core/components/layouts/AppLayout'
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>
    </IsAuth>
  )
}