DEV Community

Discussion on: React Cheat sheet (Updated June 2021)

Collapse
 
pekosong profile image
Peko • Edited

Thank you posting

this component will not work.

const Person = (name, age) => {
return (

Name: {name}, Age: {age}

)
}

should be

const Person = ({name, age}) => {

return (

Name: {name}, Age: {age}


)

}
Collapse
 
ericchapman profile image
Eric The Coder

Fixed. Thanks