dashboard/frontend/node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs

14 lines
237 B
JavaScript
Raw Normal View History

2025-12-16 08:16:27 +09:00
"use client";
import { createContext } from 'react';
/**
* @public
*/
const MotionConfigContext = createContext({
transformPagePoint: (p) => p,
isStatic: false,
reducedMotion: "never",
});
export { MotionConfigContext };