Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

301
Views
useNavigate() utilizado en el enrutador y aún muestra el error

El error mostrado:

 Uncaught Error: useNavigate() may be used only in the context of a <Router> component. at invariant (index.tsx:24:1) at useNavigate (index.tsx:512:1) at Login (Login.js:13:1) at renderWithHooks (react-dom.development.js:14985:1) at mountIndeterminateComponent (react-dom.development.js:17811:1) at beginWork (react-dom.development.js:19049:1) at HTMLUnknownElement.callCallback (react-dom.development.js:3945:1) at Object.invokeGuardedCallbackDev (react-dom.development.js:3994:1) at invokeGuardedCallback (react-dom.development.js:4056:1) at beginWork$1 (react-dom.development.js:23964:1)

Estoy comenzando un nuevo proyecto de reacción y haciendo un enrutamiento básico, sin embargo, un error se debe al uso de useNavigate , solía hacerlo muchas veces y no sé lo que me estoy perdiendo:

Aplicación.js:

 import {BrowserRouter, Route, Routes} from "react-router-dom"; function App() { return ( <BrowserRouter> <Routes> <Route path='/' element={<Login/>} exact/> <Route path={"/chat/:room"} element={<Chat/>} socket={socket} exact/> </Routes> </BrowserRouter> ); }

Iniciar sesión.js:

 import {useNavigate} from "react-router" function Login() { const navigate = useNavigate() const [error, setError] = useState("") const validationSchema = yup.object({ username: yup.string("username must be a string").required("username is required"), password: yup.string("password must be a string").required("password is required") }) const onSubmit = async () => { const user = { username: formik.values.username, password: formik.values.password } const res = await api.post('/login', formik.values) if (res === true){ localStorage.setItem('user', JSON.stringify(user)); navigate("chat/1"); } else setError("username or password incorrect"); } const formik = useFormik({ initialValues: { username: '', password: '' }, onSubmit, validationSchema }) ... }
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!