尝试导入react时出现Javascript编译错误
代码: // 反应和反应组件 从“反应”导入反应; 从'react-dom'导入ReactDOM 从 'react-redux' 导入 {Provider} import App from './containers/App'
错误消息:“第 2 行语法错误 800A03EA”
我从 https://github.com/mimshwright/mimstris 并没有改变什么。
我做错了什么?
Code:
// React and react components
import React from 'react';
import ReactDOM from 'react-dom'
import {Provider} from 'react-redux'
import App from './containers/App'
Error Message: "Syntax error 800A03EA at line 2"
I got the whole project from https://github.com/mimshwright/mimstris
and changed nothing.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法运行 main.js,因为这是源代码。您需要首先构建应用程序,因此您需要构建工具。
在这种情况下,安装 yarn 并在安装依赖模块(
yarn install
)后,您可以启动应用程序处于开发模式 (yarn run start
) 或构建它 (yarn run build
)。You cannot run main.js because this is the source code. You need build the application first and therefore you need build tools.
In this case install yarn and after installing dependent modules (
yarn install
) you can start the application in development mode (yarn run start
) or build it (yarn run build
).