我尝试在Visual Studio 2015中使用Asp.net MVC运行我的React框架。在scripts文件夹中,我添加了新文件夹,我添加了package.json
,webpack config
和tsconfig
。在另一个文件夹中,我添加了app.js
文件,在那里我想导入其他组件并在页面上显示一些内容。我可以用任何错误编译webpack但是当我打开我的/Home/Index
站点时,不会显示任何内容。在开发人员工具中,我只有信息
React is not defined
at Object.<anonymous> (bundle.js:85)
at __webpack_require__ (bundle.js:20)
at Object.module.exports (bundle.js:73)
at __webpack_require__ (bundle.js:20)
at bundle.js:63
at bundle.js:66
当然,我试图找到一些信息,但没有任何帮助。在我tsx
app.js
扩展之前,我读过这个不推荐。在我分享我的app.js文件之前。当然,我包含dist.js
的文件。
import { React } from "react";
ReactDOM.render(
<h1>Hello</h1>,
document.getElementById("root")
);