Do you want to request a feature or report a bug?
False
What is the current behavior?
Unknown
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar (template: https://jsfiddle.net/m4mb9Lg3/4/).
Not a bug but here's the demo https://codesandbox.io/s/73ymn2k911
What is the expected behavior?
Components render
Which versions, and which browser / OS are affected by this issue? Did this work in previous versions?
I'm on Windows 10 and the original project used Yarn (I'm on NPM) and older versions of dependencies
Clicking a nav link on codesandbox.io reveals errors in the cinsole that Chrome itself does not including
Warning: Unknown event handler propertyonExited. It will be ignored.
Warning: Receivedtruefor a non-boolean attributein.
P.S. I'm a newb
Based on my observations through dev tools, it initially knows where to place components but forgets to set opacity: 1 or remove the old components
I've been reviewing the react-transition-group v1 to v2 migration guide and I think the problem is actually my transition components which I have no idea how to fix.
do you have a more paired down example? I'm not sure what to be looking at or where to suggest things. It seems tho like you are using the v1 api, but i also don't see the dependency in the codesandbox...
Trying to take an example that used the v1 and update it to use v2
As I said, I have been, and I still can not find the problem.
ok...i'm not sure what you want us to do then i'll re say this:
do you have a more paired down example? I'm not sure what to be looking at or where to suggest things
"pared-down" is a colloquialism that i needed to google so choose your language more carefully, and the example is already bare-bones.
"pared-down" is a colloquialism that i needed to google
It really isn't but OK, hope you figure it out
<TransitionGroup>
<CSSTransition
timeout={500}
>
{Children}
</CSSTransition>
</TransitionGroup>
You can add CSStransition ... which leads to remove your Warning Like--
Warning: Unknown event handler property onExited. It will be ignored.
Warning: Received truefor a non-boolean attributein.
@mayankpandav yaa It's Worked for Me
Thanks !!
Most helpful comment
You can add CSStransition ... which leads to remove your Warning Like--
Warning: Unknown event handler property onExited. It will be ignored.
Warning: Received truefor a non-boolean attributein.