This is my code below, and when I tried to run it on localhost, nothing shows up, and in the console it says "Uncaught SyntaxError: Unexpected token <". (in line "
const { render }=ReactDOM
const style={
backgroundColor:'orange',
color:'white',
fontFamily:'verdana'
}
render(
<h1 id='title'
className='header'
style={style}>
Hello World
</h1>,
document.getElementById('react-container')
)
I checked several times but can't figure out what I did wrong. There is a index.html file and index.js file, above is the code from index.js file