我在我的下一个js应用程序上收到了这个错误,我甚至不知道它是从哪里来的,因为抛出这个错误的代码甚至不是我写的。
error - file:///Users/cheq/Desktop/cheqo/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs:1
import { useContext, useId, useEffect } from 'react';
^^^^^
SyntaxError: Named export 'useId' not found. The requested module 'react' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
import pkg from 'react';
const { useContext, useId, useEffect } = pkg;
当我从Framer Motion导入任何内容时都会出现此错误,以下是我的完整代码:
import React from 'react';
import { motion } from 'framer-motion';
function motionpage() {
return (
<>
<div>motionpage</div>
<motion.button whileHover={{ scale: 1.02 }} whileTap={{ scale: 0.98 }}>
Button
</motion.button>
</>
);
}
export default motionpage;
我怎么才能解决这个问题呢?
1条答案
按热度按时间qij5mzcb1#
useId
是React 18中引入的新挂钩。请升级您的Reaction版本,然后重试。