导入错误,找不到文件 - stackblitz React JS
Import error, can't find file - stackblitz React JS
我正在 stackblitz 环境中进行 POC,同时尝试导入 app.tsx 文件,Import error, can't find file:
在浏览器中出现此错误。
下面是我的项目link
https://stackblitz.com/edit/react-ts-kvyax9
请帮忙。
您的导入中有很多 typos/spelling 个错误。
在 index.tsx
中,您有此导入:
import App from './App';
而您的 app
文件以 app.tsx
而不是 App.tsx
的形式存在。您需要正确提及文件名
import App from './app';
同样,在 app.tsx
中,您所有的导入都引用了不正确的文件名。将它们更改为:
import A from './a';
import B from './b';
import C from './c';
import D from './d';
import './style';
我正在 stackblitz 环境中进行 POC,同时尝试导入 app.tsx 文件,Import error, can't find file:
在浏览器中出现此错误。
下面是我的项目link
https://stackblitz.com/edit/react-ts-kvyax9
请帮忙。
您的导入中有很多 typos/spelling 个错误。
在 index.tsx
中,您有此导入:
import App from './App';
而您的 app
文件以 app.tsx
而不是 App.tsx
的形式存在。您需要正确提及文件名
import App from './app';
同样,在 app.tsx
中,您所有的导入都引用了不正确的文件名。将它们更改为:
import A from './a';
import B from './b';
import C from './c';
import D from './d';
import './style';