UNPKG

framer-motion

Version:

A simple and powerful React animation library

9 lines (6 loc) 234 B
import { createContext, useContext } from 'react'; var MotionContext = createContext({}); function useVisualElementContext() { return useContext(MotionContext).visualElement; } export { MotionContext, useVisualElementContext };