This child component is returning an empty p element. It should be rendering the props which are passed to it. There is an example in the instructions for this challenge which shows you exactly how to do this.
This is how that part of the code looks when the lesson is reset to its initial state:
const List = (props) => {
{ /* Change code below this line */ }
return <p>{}</p>
{ /* Change code above this line */ }
};
All you have done is remove those comments and the curly brackets inside the p element.
This lesson deals with learn how to pass data from the parent component to the child which is an important part of react.
You did this part correctly
But you haven’t written anything here
I would suggest looking at the example they gave you for how to use props in the child here
Here is the excerpt from the lesson
The child component then has access to the array property colors. Array methods such as join() can be used when accessing the property. const ChildComponent = (props) => <p>{props.colors.join(', ')}</p> This will join all colors array items into a comma separated string and produce: <p>green, blue, red</p> Later, we will learn about other common methods to render arrays of data in React.
Just like the example, you will do something similar in this challenge.
For better understanding on how props work, I would suggest looking at the interactive examples in the docs