UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

16 lines (13 loc) 445 B
import { warnOnce } from 'motion-utils'; import { useScroll } from '../use-scroll.mjs'; /** * @deprecated useViewportScroll is deprecated. Convert to useScroll() */ function useViewportScroll() { if (process.env.NODE_ENV !== "production") { warnOnce(false, "useViewportScroll is deprecated. Convert to useScroll()."); } return useScroll(); } export { useViewportScroll }; //# sourceMappingURL=use-viewport-scroll.mjs.map