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

299
Views
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 answers
Answer question

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 Report
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!