diff --git a/seed/challenges/03-front-end-libraries/react.json b/seed/challenges/03-front-end-libraries/react.json index ffee2a231d..e73bf8610a 100644 --- a/seed/challenges/03-front-end-libraries/react.json +++ b/seed/challenges/03-front-end-libraries/react.json @@ -497,7 +497,7 @@ "As the challenges continue to use more complex compositions with React components and JSX, there is one important point to note. Rendering ES6 style class components within other components is no different than rendering the simple components you used in the last few challenges. You can render JSX elements, stateless functional components, and ES6 class components within other components.", "
TypesOfFood
component is already rendering a component called Vegetables
. Also, there is the Fruits
component from the last challenge.",
- "Nest two components inside of Fruits
— first NonCitrus
, and then Citrus
. Both of these components are provided for you in the background. Next, nest the Fruits
class component into the the TypesOfFood
component, below the h1
header and above Vegetables
. The result should be a series of nested components, which uses two different component types."
+ "Nest two components inside of Fruits
— first NonCitrus
, and then Citrus
. Both of these components are provided for you in the background. Next, nest the Fruits
class component into the TypesOfFood
component, below the h1
header and above Vegetables
. The result should be a series of nested components, which uses two different component types."
],
"files": {
"indexjsx": {