AI-powered
podcast player
Listen to all your favourite podcasts with AI-powered features
Is Frame of Motion a Better React Plugin?
frame of motion has this component animate presence. And it kind of tracks when elements are coming in or out, you can give them an exit animation. So they like fade out something like that. They move off the screen. The component that you're animating out actually gets removed from your React tree. It doesn't just snapshot its HTML and keeps it around. Actually, I think it clones a component. Because if you have a hook in the component, that hook will rerun while your component's animating out. But as soon as you unrender it, React takes it out of the DOM, and there's no chance to animate it away. Right, right? That was my