所以我在这方面很新,但我正在尝试将 Laravel 与 react 一起使用,我正在尝试做一个基本的 react 东西,我不知道为什么,但我收到了这个错误..
这是我的代码 从“反应”导入反应; 从“react-dom”导入 ReactDOM;
function Game() {
return (
<div><h1>Okay I'm here</h1></div>
<div><h1>Im here too</h1></div>;
)
}
export default Game;
if (document.getElementById("game")) {
ReactDOM.render(<Game />, document.getElementById("game"));
}
我收到了这个错误: [图片][1]
但是跟函数只是
function Game() {
return <div>I'm here</div>
}
这行得通,我只是很困惑 [1]:https://i.stack.imgur.com/jlveG.png