unis_crm/frontend/node_modules/framer-motion/dist/es/value/use-spring.mjs

10 lines
247 B
JavaScript
Raw Normal View History

2026-03-19 06:27:20 +00:00
"use client";
import { useFollowValue } from './use-follow-value.mjs';
function useSpring(source, options = {}) {
return useFollowValue(source, { type: "spring", ...options });
}
export { useSpring };
//# sourceMappingURL=use-spring.mjs.map