ReactDom is not defined

Tell us what’s happening:
Getting this error code:

ReactDom is not defined
ReactDom is not defined
ReactDom is not defined
ReactDom is not defined

Your code so far


const JSX = (
  <div>
    <h1>Hello World</h1>
    <p>Lets render this to the DOM</p>
  </div>
);
// change code below this line
ReactDom.render(JSX, document.getElementById('challenge-node'));

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36.

Link to the challenge:

You’re using ReactDom instead of ReactDOM

5 Likes

Oh yikes, it’s been a while since I’ve missed a typo that obvious. Time for sleep!

Thanks :slight_smile:

Thanks! You’re beautiful!