Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error occurs when importing framer-motion

Install framer-motion and import { Frame, useMotionValue, useTransform } from 'framer';. However, I get the following error.

Cannot find module 'framer' or its corresponding type declarations.ts(2307)
like image 571
aahhuhuhu Avatar asked Feb 19 '26 02:02

aahhuhuhu


1 Answers

npm i framer-motion

after:

import { useMotionValue, useTransform } from "framer-motion"
import { Frame } from "framer"

You misunderstood "framer-motion" and "framer"

like image 74
ChilTest Avatar answered Feb 21 '26 17:02

ChilTest