diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-10-17 17:06:58 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-10-17 17:06:58 +0700 |
| commit | ead46a6d760850530946926b390a8954ca64e1c2 (patch) | |
| tree | 6d873de6a17310ab82e7dcc5ac76a70993a38b7e /src/lib/pengajuan-tempo/component/PengajuanTempo.jsx | |
| parent | 0908fc0075f91844ffed4002165c638d02eb91be (diff) | |
<iman> update pengajuan tempo
Diffstat (limited to 'src/lib/pengajuan-tempo/component/PengajuanTempo.jsx')
| -rw-r--r-- | src/lib/pengajuan-tempo/component/PengajuanTempo.jsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/pengajuan-tempo/component/PengajuanTempo.jsx b/src/lib/pengajuan-tempo/component/PengajuanTempo.jsx index 5f250438..c15189d1 100644 --- a/src/lib/pengajuan-tempo/component/PengajuanTempo.jsx +++ b/src/lib/pengajuan-tempo/component/PengajuanTempo.jsx @@ -2,6 +2,7 @@ import React from 'react'; import { useMemo, useState, useEffect, useRef } from 'react'; import Stepper from './Stepper'; import InformasiPerusahaan from './informasiPerusahaan'; +import KontakPerusahaan from './KontakPerusahaan'; import { Controller, useForm } from 'react-hook-form'; import { usePengajuanTempoStore } from '../../../../src-migrate/modules/register/stores/usePengajuanTempoStore'; import { ChevronRightIcon } from '@heroicons/react/24/outline'; @@ -13,6 +14,10 @@ const PengajuanTempo = () => { const isFormValid = useMemo(() => Object.keys(errors).length === 0, [errors]); const [buttonSubmitClick, setButtonSubmitClick] = useState(false); const stepDivs = [ + <KontakPerusahaan + chekValid={notValid} + buttonSubmitClick={buttonSubmitClick} + />, <InformasiPerusahaan chekValid={notValid} buttonSubmitClick={buttonSubmitClick} |
