UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

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