我在React JS中一直收到这个错误。我从来没有收到过这个错误,而且我在互联网上也找不到任何东西。我安装了react-spring。我把它导入App.js了。
尝试导入错误:'animated‘不是从'react-spring’导出的。
import { useSpring, animated } from "react-spring";我已经使用: npm install react-spring安装了react-spring
发布于 2021-04-26 10:52:43
请像这样导入“动画”:
import {animated} from 'react-spring'
因为它被命名为export,而不是缺省导出。请参阅此处提供的import语句示例:https://blog.logrocket.com/animations-with-react-spring/
https://stackoverflow.com/questions/67260149
复制相似问题