summaryrefslogtreecommitdiff
path: root/src/pages/pembayaran-tempo.jsx
blob: b0df9b41d6c4b1db280da31e232021033fb62431 (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 CreatePembayaranTempo from '@/lib/form/components/CreatePembayaranTempo'

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

      <BasicLayout>
        <CreatePembayaranTempo></CreatePembayaranTempo>
      </BasicLayout>
    </>
  )
}