I tried writing a simple react spring to change my component's margin but it isn't working, the div just render with the "from" style.
const gradients = useSpring({
from: {
marginTop: '0'
},
to: {
marginTop: '-100vh'
}
})
return (
<animated.div style={gradients}>{some content}</animated.div>
)
took me hours: you have to set the units of measurement on the from
property even though it's zero!