Menu
×
×
Correct!
Exercise:Name the following React component "person".
function Person(props) {
return <h2>Hi, I'm {props.name}</h2>;
}
Not CorrectClick here to try again. Correct!Next ❯function(props) { return <h2>Hi, I'm {props.name}</h2>; } |