Between comments kindly help me

Tell us what’s happening:

Your code so far


const TypesOfFruit = () => {
return (
  <div>
    <h2>Fruits:</h2>
    <ul>
      <li>Apples</li>
      <li>Blueberries</li>
      <li>Strawberries</li>
      <li>Bananas</li>
    </ul>
  </div>
);
};

const Fruits = () => {
return (
  <div>
    { /* change code below this line */ }
<TypesOfFruit/>   **// kindly help me about this line**
    { /* change code above this line */ }
  </div>
);
};

class TypesOfFood extends React.Component {
constructor(props) {
  super(props);
}

render() {
  return (
    <div>
      <h1>Types of Food:</h1>
      { /* change code below this line */ }

      { /* change code above this line */ }
    </div>
  );
}
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36.

Challenge: Use React to Render Nested Components

Link to the challenge:

Hello there.

What exactly are you struggling with?

What you have is correct, but only half of what the challenge asks for.
You have done this:

Take the TypesOfFruit component and compose it, or nest it, within the Fruits component.

But need to do the rest:

Then take the Fruits component and nest it within the TypesOfFood component.