| 1234567891011121314 |
- 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 };
|