--- title: Compose React Components --- # Compose React Components ## Hint Use nested components as in the previous challenge to render components. ## Solution 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 (