## 4.0.2
Keyframe api, various bugfixes
Breaking changes:
- Transition doesn't need
keys
any longer if it's a two-state transition/reveal.
<Transition
from={{ opacity: 0 }}
enter={{ opacity: 1 }}
leave={{ opacity: 0 }}>
{toggle ? ComponentA : ComponentB}
</Transition>
Breaking changes:
- SpringTrail -> Trail
- SpringTransition -> Transition
New primitives:
- Parallax