I can't figure out how to set up ReactCSSTransitionGroup. Here are the steps I've attempted:
- npm install react-transition-group
- import ReactCSSTransitionGroup from 'react-transition-group'; (added to the top of my JS file.)
And I get, "Attempted import error: 'react-transition-group' does not contain a default export (imported as 'ReactCSSTransitionGroup')."
The official documentation (https://reactjs.org/docs/animation.html#low-level-api-reacttransitiongroup) doesn't specify how to fully set this up so I'm a bit lost here.
Here are the details in the documentation that I'm attempting to follow.


