fixed build and added updates to loan amount component

This commit was merged in pull request #27.
This commit is contained in:
2024-03-22 22:35:11 +01:00
parent 05dfb50f62
commit b3efba09d6
5 changed files with 44 additions and 16 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import LoanAmountComp from "./LoanAmountComp";
const GetStarted = () => {
const [step, setStep] = React.useState(1);
const handleNextStep: any = () => {
const handleNextStep = () => {
setStep(step + 1);
};