尝试导入react时出现Javascript编译错误

发布于 2025-01-12 09:21:58 字数 317 浏览 0 评论 0原文

代码: // 反应和反应组件 从“反应”导入反应; 从'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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的位置 2025-01-19 09:21:58

您无法运行 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文