Skip to content
Advertisement

Passing string from parent to render multiple children

I may lose something on the way.. I want to pass object arguments to a children to dinamically render it in three different ways.

Here is my object:

JavaScript

This is the children component:

JavaScript

And then i have the parent component where i want to render multiple Card mapping the cards array:

JavaScript

and then i receive this:

Error: Objects are not valid as a React child (found: object with keys {}). If you meant to render a collection of children, use an array instead.

I suppose it is a stupid error but i am in my first approach and i don’t know how to move. Thank you all.

Advertisement

Answer

I think the problem is that your card function is expecting positional arguments but you’re calling it with an object.

JavaScript

So essentially you were assigning the source arg and object that contained both source and text.

Try changing your card function to accept an object

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement