DEV Community

Discussion on: Writing (clean) React code

Collapse
 
outthislife profile image
Talasan Nicholson

If the prop is the same name as the variable, please, do this:

const data = []
return <Component {... { data } } />
Collapse
 
sagar profile image
Sagar

Hi,

What benefits will give us by wrapping data array inside the object literal?