blob: 93ed40b05717fe1686dc77c95d1be27b9b839080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import AppLayout from '@/core/components/layouts/AppLayout'
import AddressesComponent from '@/lib/address/components/Addresses'
import IsAuth from '@/lib/auth/components/IsAuth'
export default function Addresses() {
return (
<IsAuth>
<AppLayout title='Daftar Alamat'>
<AddressesComponent />
</AppLayout>
</IsAuth>
)
}
|