English
Appearance
Physics effect hook (WIP).
import { usePhysics } from '@vaclock/utils'; const [ref] = usePhysics({ type: 'spring', config: { tension: 170, friction: 26 }, onUpdate: (value) => { console.log(value); } });