motion
motion copied to clipboard
[DOCS] Parameter error for useInView root example
Describe the bug
Parameter error for useInView root example
https://www.framer.com/motion/use-in-view/###root
the root should be at second parameter
function Carousel() {
const container = useRef(null)
const ref = useRef(null)
- const isInView = useInView({ root: container })
+ const isInView = useInView(ref, { root: container })
return (
<div ref={container} style={{ overflow: "scroll" }}>
<div ref={ref} />
</div>
)
}
The margin is also.
https://www.framer.com/motion/use-in-view/###margin