Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

294
Vistas
error : Objects are not valid as a React child

I don't understand the problem, if I know anyone new in this world, please help me. Uncaught Error: Objects are not valid as a React child (found: [object Error]). If you meant to render a collection of children, use an array instead.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Inside React Componenets you can't render objects directly

for exmaple:

const component=()=>{
    const user={
      fname:"John",
      lname:"Wick"
    }
    return (
      <div> the current user is {user} </div>
    )

}

In this code above, you will get an error of object is not a valid react child.

Solution: Always render the properties of the objects or use map() if you have an array of objects.

const component=()=>{
    const user={
      fname:"John",
      lname:"Wick"
    }
    return (
      <div> the current user is {user.fname} {user.lname} </div>
    )

}

Now, since you're rendering the properties and not the object, you'll have no error§

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda