使用 Snowpack 在开发模式下运行时出现此 React 错误
Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: object.
此导入是错误的来源。
import { Button } from "antd"
这是您需要了解的依赖项。
"dependencies": {
"antd": "^4.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
},
"devDependencies": {
"@snowpack/app-scripts-react": "^1.8.3",
"snowpack": "^2.7.6"
}
你知道我该如何解决这个问题吗?
到目前为止,我已经尝试过这些进口,但没有运气。
import { Button } from "antd/lib/button"
和
import Button from "antd/lib/button"