index.mjs 251 B

12345678
  1. import { useConstant } from '../../utils/use-constant.mjs';
  2. import { WillChangeMotionValue } from './WillChangeMotionValue.mjs';
  3. function useWillChange() {
  4. return useConstant(() => new WillChangeMotionValue("auto"));
  5. }
  6. export { useWillChange };