summaryrefslogtreecommitdiff
path: root/src/pages/my/kunjungan-service.jsx
blob: 80d1ecbc8e570762151b37a3c282907f475bac63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import CreateKunjunganService from '@/lib/form/components/KunjunganService'

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

      <BasicLayout>
        <CreateKunjunganService></CreateKunjunganService>
      </BasicLayout>
    </>
  )
}