Essentially, I am looking to achieve something similar to this:
visible ?
<Fade>
<SomeComponent/>
</Fade>
: undefined
My goal is to smoothly transition individual elements without having to control the state of the Fade component from a parent component.
I simply want the Fade effect to be activated when the element mounts and unmounts. What would be the most effective approach to accomplish this?