Cannot find module 'react-infinite-scroll-component' or its corresponding type declarations.
时间: 2024-05-06 19:14:56 浏览: 287
react-infinite-scroll-component:react中一个很棒的Infinite Scroll组件
5星 · 资源好评率100%
这个错误提示是因为你在代码中使用了一个名为 "react-infinite-scroll-component" 的模块,但是你的项目中没有安装该模块。你需要通过以下命令安装该模块:
使用 npm:
```
npm install react-infinite-scroll-component
```
使用 yarn:
```
yarn add react-infinite-scroll-component
```
如果你已经安装了该模块,那么请检查一下你的 import 语句是否正确,或者尝试重新安装该模块。如果问题仍然存在,请尝试在你的 IDE 中重新启动 TypeScript Server。
阅读全文