summaryrefslogtreecommitdiff
path: root/src/pages/my/merchant.jsx
blob: 9cb83a0fa2597c9ccd221bb15efc1e8111968447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import CreateMerchant from '@/lib/form/components/Merchant'
import CreateSuratDukungan from '@/lib/form/components/SuratDukungan'

export default function pembayaran_tempo() {
 
  return (
    <>
      <Seo title='Merchant - Indoteknik.com' />

      <BasicLayout>
        <CreateMerchant></CreateMerchant>
      </BasicLayout>
    </>
  )
}