Files
2026-03-27 18:36:05 +00:00

10 lines
247 B
JavaScript

"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