I'm loving RR4 and RM, there's already great examples for React Router V4 (https://github.com/ReactTraining/react-router/tree/v4/website/examples) but i'm struggling to understand how I can use the new V4 API to transition between different Matches in my Router with React Motion, fading in and out between my 'pages'.
I've tried to understand how the Transition example works with the MatchWithFade but I'm missing how to take this and apply it to multiple matches representing my page structure.
As an example: given two routes setup in my Router how can I have the mounting and unmounting handled by react-motion with TransitionMotion?
<Router>
<div>
<Match pattern="/products" component={Products} />
<Match pattern="/accessories" component={Accessories} />
</div>
</Router>
Any help would be greatly appreciated.