Added Applicants Attestation Page

This commit is contained in:
2024-03-23 06:23:50 +01:00
parent b8f9958517
commit e2b3978ab6
5 changed files with 158 additions and 25 deletions
+3 -1
View File
@@ -2,6 +2,7 @@ import React from "react";
import BasicInfo from "./BasicInfo";
import YourAreAlmostThere from "./YourAreAlmostThere";
import LoanAmountComp from "./LoanAmountComp";
import ApplicantsAttestation from "./ApplicantsAttestation";
const GetStarted = () => {
const [step, setStep] = React.useState(1);
@@ -41,7 +42,8 @@ const GetStarted = () => {
/>
)}
{step === 2 && <YourAreAlmostThere handleNextStep={handleNextStep} />}
{step === 3 && <LoanAmountComp />}
{step === 3 && <LoanAmountComp handleNextStep={handleNextStep} />}
{step === 4 && <ApplicantsAttestation />}
</main>
</div>
</div>