Reactjs – React Router Navigation in Form submission
the navigation does not work , the react router is working correctly when i type down the URL manually also the Links const navigate = useNavigate(); function handleForm() { console.log("Form Submitted"); navigate("/"); } <Form onSubmit={handleForm}> ... </Form> To navigate to…