Package Exports
- react-addons-transition-group
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-addons-transition-group) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-addons-transition-group
The code in this package has moved. We recommend you to use TransitionGroup
from react-transition-group
instead.
In particular, its version 1.x
is a drop-in replacement for the last released version of react-addons-transition-group
.
Run npm install --save react-transition-group@1.x
, and replace the imports in your code:
// Old
import TransitionGroup from 'react-addons-transition-group';
// New
import TransitionGroup from 'react-transition-group/TransitionGroup';
The documentation branch for react-transition-group@1.x
can be found here.