summaryrefslogtreecommitdiff
path: root/src/pages/my/surat-dukungan.jsx
blob: a19c60d6ec5c8495e9a2c71db2f2dd469a548239 (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 CreateKunjunganService from '@/lib/form/components/KunjunganService'
import CreateSuratDukungan from '@/lib/form/components/SuratDukungan'

export default function surat_dukungan() {
 
  return (
    <>
      <Seo title='Surat Dukungan - Indoteknik.com' />

      <BasicLayout>
        <CreateSuratDukungan></CreateSuratDukungan>
      </BasicLayout>
    </>
  )
}