From 4264d9ed5904ed671b7e700108d7dcfdbe19157a Mon Sep 17 00:00:00 2001 From: Anmol Sarraf Date: Mon, 12 Jun 2023 23:59:51 +1000 Subject: [PATCH] fix: improvement in the code snippet (#50666) Co-authored-by: Anmol Sarraf --- .../react/render-html-elements-to-the-dom.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')); ```