summaryrefslogtreecommitdiff
path: root/src/pages/daftar-merchant.jsx
blob: 945a00605f2712ea66de7b07f395a377de1c664c (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>
    </>
  )
}