这是我下面的代码,当我尝试在 localhost 上运行它时,什么也没有出现,并且在控制台中显示“未捕获的语法错误:意外的令牌 <”。(排队 ”
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')
)
我检查了几次,但无法弄清楚我做错了什么。有一个 index.html 文件和 index.js 文件,上面是 index.js 文件中的代码