dashboard/frontend/node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs
2025-12-16 08:16:27 +09:00

13 lines
237 B
JavaScript

"use client";
import { createContext } from 'react';
/**
* @public
*/
const MotionConfigContext = createContext({
transformPagePoint: (p) => p,
isStatic: false,
reducedMotion: "never",
});
export { MotionConfigContext };