diff --git a/curriculum/challenges/english/03-front-end-development-libraries/react/render-html-elements-to-the-dom.md b/curriculum/challenges/english/03-front-end-development-libraries/react/render-html-elements-to-the-dom.md index d5167e4e138..a804842d9c3 100644 --- a/curriculum/challenges/english/03-front-end-development-libraries/react/render-html-elements-to-the-dom.md +++ b/curriculum/challenges/english/03-front-end-development-libraries/react/render-html-elements-to-the-dom.md @@ -58,7 +58,7 @@ const JSX = (
Lets render this to the DOM
); -// Change code below this line +// Add your code below this line ``` # --solutions-- @@ -70,6 +70,6 @@ const JSX = (Lets render this to the DOM
); -// Change code below this line +// Add your code below this line ReactDOM.render(JSX, document.getElementById('challenge-node')); ```