react-router-transition-group
Transitions for react-router.
Installation
npm install react-router-transition-group
Demo
Usage
- Add
transition
property toSwitch
component - You also can override
transition
for eachRoute
component transition
is a Transition component fromreact-transition-group
- To disable transitions between some routes, you can group them by passing the same
transitionKey
property toRoute
component
<Switch transition=MyTransition component=Fragment exit> <Route exact path="/" component=HomePage /> <Route component=NotFoundPage /> </Switch>