blob: e1fa9bcbd3d96ad8f057f8af2f5f7cc2157560a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import CreateMerchant from '@/lib/form/components/Merchant'
export default function DaftarMerchant() {
return (
<>
<Seo title='Daftar Merchant - Indoteknik.com' />
<BasicLayout>
<CreateMerchant></CreateMerchant>
</BasicLayout>
</>
)
}
|