繁体   English   中英

尝试导入错误:“ImageList”未从“@material-ui/core”导出

[英]Attempted import error: 'ImageList' is not exported from '@material-ui/core'

你好,我正在开发一个 React 应用程序,我正在尝试从 @material-ui 导入 ImageList 我使用"import { ImageList } from '@material-ui/core'; but it gives me error while compiling , i 've installed npm install @material-ui/core` 这是我的依赖项 "@material-ui/core": "^4.11.4", "react": "^17.0.2", "react-dom": "^ 17.0.2"

ImageList 组件仅在 material-ui v5(目前为 alpha)中可用。

npm install @material-ui/core安装最新稳定版(v4.11.1)

对于 alpha 版本,您应该使用以下命令install @material-ui/core@next @emotion/react @emotion/styled ,如https://next.material-ui.com/ 上的官方文档中所述

确保您使用的是材质 ui 5。在材质 ui 4 中,您必须使用 GridList 而不是 ImageList

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM