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