Framer Motion useInView()
any idea why this is not adding 100px of margin until the introContainerInView will become true?
const introContainerRef = useRef<HTMLDivElement>(null);const introContainerInView = useInView(introContainerRef, {
margin: "100px 0px 0px 0px",
});