Render a Class Component to the DOM help!

Tell us what’s happening:

Can someone tell me what is the problem!!!

Your code so far



class TypesOfFood extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h1>Types of Food:</h1>
        {/* change code below this line */}
          <Fruits/>
          <Vegetables/>
        {/* change code above this line */}
      </div>
    );
  }
};

// change code below this line
ReactDOM.render(TypesOfFood,document.getElementById("challenge-node"));

Your browser information:

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

Link to the challenge:

There is a problem with this line. When you are rendering a component to the DOM using ReactDOM, you need to follow the syntax of a component. In this case it would be <TypesOfFood />