MotionConfigContext.mjs 237 B

12345678910111213
  1. "use client";
  2. import { createContext } from 'react';
  3. /**
  4. * @public
  5. */
  6. const MotionConfigContext = createContext({
  7. transformPagePoint: (p) => p,
  8. isStatic: false,
  9. reducedMotion: "never",
  10. });
  11. export { MotionConfigContext };