Code pen link here.
In my fist ReactJS tutorial video, I was writing hello world script and disappointingly its not working. I am not seeing any problem with the script or html tags I used but simple ReactDOM.Render() function isn't working.
Code pen SS below.

As you can see, the HTML block has root div HTML block:
<div id="root">Why ReactDOM.Render() not working?</div>
JS(Babel) block has simple render function and in the right side pane the preview is showing default text in root element but not the text.
JS block:
var el = <h1>YOU HELLO WORLD WHY DONT YOU WORK</h1>
ReactDOM.Render(
el,
Document.getElementById("root")
)