I am experimenting with ReactTransitionGroup and ReactRouter. The problem is that exit transitions dont work.
according to RTG site: When using React Transition Group with React Router, make sure to avoid using the Switch component because it only executes the first matching Route. This would make the exit transition impossible to achieve because the exiting route will no longer match the current URL and the children function won't execute.
https://reactcommunity.org/react-transition-group/switch-transition
Is it possible to use SwitchTransition to fix this limitation by wrapping the CSSTransition (wrapping a switch) in a SwitchTransition?
