UNPKG

reactors

Version:

View components and APIs that work web, mobile and desktop!

8 lines (6 loc) 169 B
const timing = (animatedValue, {duration = '1s', toValue}) => ({ start: () => { animatedValue.change({value: toValue, duration}); }, }); export default timing;