DEV Community

Discussion on: React Anti-pattern: renderThing

Collapse
 
hlherrera profile image
Hermes L Herrera • Edited

I suggest to develop a component in another fashion.
Instead of array of props, is more functional and reusable, to use an array of children. Component composition.

Ex.


....
....

Render props, is a great powerfull pattern to use in this case.