<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/react-101/lessons/react-jsx-intro/exercises/reactdom-render-ii?user_id=534ca7bf8c1ccc184a000bfd
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
My code just isnt running despite the fact that i have completed what they asked for
I replaced “app” with “container” in app.js, and I have replaced the app element in the html file with the container element, not working
```var React = require(‘react’);
var ReactDOM = require(‘react-dom’);
ReactDOM.render(
Render me!
,document.getElementById(‘container’)
);
<do not remove the three backticks above>