securityos/node_modules/framer-motion/dist/es/value/scroll/use-viewport-scroll.mjs

15 lines
409 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
import { warnOnce } from '../../utils/warn-once.mjs';
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 };