--- title: Compose React Components --- # Compose React Components --- ## Hints ### Hint 1 Use nested components as in the previous challenge to render components. --- ## Solutions
Solution 1 (Click to Show/Hide) The following is the solution to the challenge, where it render `Citrus` and `NonCitrus` in a component which is then rendered in another: ```jsx class Fruits extends React.Component { constructor(props) { super(props); } render() { return (

Fruits:

); } }; class TypesOfFood extends React.Component { constructor(props) { super(props); } render() { return (
); } }; ``` #### Relevant Links - [Components and Props](https://reactjs.org/docs/components-and-props.html) - [Nested Components](http://www.reactjstutorial.net/nested-components.html)