From fb8d598d4346a19a96e4f9af002296a3d83cd23e Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Mon, 10 Feb 2025 19:53:56 +0100 Subject: [PATCH] back to home link added --- src/components/GetLoan.jsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/components/GetLoan.jsx b/src/components/GetLoan.jsx index 9e9b379..93c6d0c 100644 --- a/src/components/GetLoan.jsx +++ b/src/components/GetLoan.jsx @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react' -import { useLocation, useNavigate } from 'react-router-dom' +import { useLocation, useNavigate, Link } from 'react-router-dom' import { useQuery } from "@tanstack/react-query"; import { IoIosArrowBack, IoIosArrowForward } from "react-icons/io"; @@ -57,7 +57,7 @@ export default function GetLoan() { return (
-
+
@@ -126,6 +126,11 @@ export default function GetLoan() { : null } +
+ Back to Home +
+ +
)