--- id: 5a24bbe0dba28a8d3cbd4c5f title: Render HTML Elements to the DOM challengeType: 6 isRequired: false --- ## Description
So far, you've learned that JSX is a convenient tool to write readable HTML within JavaScript. With React, we can render this JSX directly to the HTML DOM using React's rendering API known as ReactDOM. ReactDOM offers a simple method to render React elements to the DOM which looks like this: ReactDOM.render(componentToRender, targetNode), where the first argument is the React element or component that you want to render, and the second argument is the DOM node that you want to render the component to. As you would expect, ReactDOM.render() must be called after the JSX element declarations, just like how you must declare variables before using them.
## Instructions
The code editor has a simple JSX component. Use the ReactDOM.render() method to render this component to the page. You can pass defined JSX elements directly in as the first argument and use document.getElementById() to select the DOM node to render them to. There is a div with id='challenge-node' available for you to use. Make sure you don't change the JSX constant.
## Tests
```yml tests: - text: The constant JSX should return a div element. testString: assert(JSX.type === 'div', 'The constant JSX should return a div element.'); - text: The div should contain an h1 tag as the first element. testString: assert(JSX.props.children[0].type === 'h1', 'The div should contain an h1 tag as the first element.'); - text: The div should contain a p tag as the second element. testString: assert(JSX.props.children[1].type === 'p', 'The div should contain a p tag as the second element.'); - text: The provided JSX element should render to the DOM node with id challenge-node. testString: assert(document.getElementById('challenge-node').childNodes[0].innerHTML === '

Hello World

Lets render this to the DOM

', 'The provided JSX element should render to the DOM node with id challenge-node.'); ```
## Challenge Seed
```jsx const JSX = (

Hello World

Lets render this to the DOM

); // change code below this line ```
## Solution
```js const JSX = (

Hello World

Lets render this to the DOM

); // change code below this line ReactDOM.render(JSX, document.getElementById('challenge-node')); ```