Here is the problem, Render HTML Elements to the DOM.
When I run this,
ReactDOM.render(JSX,document.getElementById("Challenge-node"));
It’s not working it says,
Build error, open your browser console to learn more.
But When I run this,
ReactDOM.render(JSX,
document.getElementById("challenge-node"));
It’s working properly!
Why same code work differently? ![]()

