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

446 B

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

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.

ReactDOM.render(JSX,document.getElementById('challenge-node'));