我尝试用VS Code创建一个React
项目。当我尝试使用以下HTML标记保存index.js
时,VS Code破坏了我的标记并在单词和方括号之间插入了空格。找不到我可以解决的方法...
// this is before I safe the project
ReactDOM.render( <div> Hello World! </div>, document.getElementById('root'))
// this is after I safe the project
ReactDOM.render( < div > Hello World! < /div>, document.getElementById('root'))
答案 0 :(得分:1)
要么:
.js
文件扩展名更改为.jsx
。"files.associations": {
"*.js": "javascriptreact"
}