成帧运动使下一个js应用程序崩溃,并显示以下错误:“语法错误:找不到命名的导出‘useID’”

laawzig2  于 2022-10-21  发布在  其他
关注(0)|答案(1)|浏览(108)

我在我的下一个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;

我怎么才能解决这个问题呢?

qij5mzcb

qij5mzcb1#

useId是React 18中引入的新挂钩。请升级您的Reaction版本,然后重试。

相关问题