fix: improvement in the code snippet (#50666)

Co-authored-by: Anmol Sarraf <anmolsarraf@Anmols-MacBook-Pro.local>
This commit is contained in:
Anmol Sarraf 2023-06-12 23:59:51 +10:00 committed by GitHub
parent 5cd684df52
commit 4264d9ed59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ const JSX = (
<p>Lets render this to the DOM</p>
</div>
);
// Change code below this line
// Add your code below this line
```
# --solutions--
@ -70,6 +70,6 @@ const JSX = (
<p>Lets render this to the DOM</p>
</div>
);
// Change code below this line
// Add your code below this line
ReactDOM.render(JSX, document.getElementById('challenge-node'));
```