13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
|
import { createContext } from 'react';
|
||
|
|
||
|
/**
|
||
|
* @public
|
||
|
*/
|
||
|
const MotionConfigContext = createContext({
|
||
|
transformPagePoint: (p) => p,
|
||
|
isStatic: false,
|
||
|
reducedMotion: "never",
|
||
|
});
|
||
|
|
||
|
export { MotionConfigContext };
|