const { animate, inView } = Motion; inView( "section div", (element) => { animate( element, { opacity: 1 }, { duration: 0.7, }, ); return () => animate(element, { opacity: 0 }, { duration: 0.7 }); }, { some: 0.7, initial: false }, );