freeCodeCamp/guide/english/certifications/front-end-libraries/react/render-html-elements-to-the.../index.md

17 lines
446 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Render HTML Elements to the DOM
---
# Render HTML Elements to the DOM
To render an element to the DOm, we use the following syntax
````javascript
ReactDOM.render(<item to be rendered>, <where to be rendered>);
````
## Solution
Following the syntax, we would add this line of code to render the JSX element to the div with the id of challenge-node.
````javascript
ReactDOM.render(JSX,document.getElementById('challenge-node'));
````