In this recipe, we are going to animate a todo list using ReactCSSTransitionGroup.
Animating a todo list with ReactCSSTransitionGroup
Getting Ready
For this recipe, we need to install the react-addons-css-transition-group package:
npm install react-addons-css-transition-group
How to do it...
We are going to make a Todo list with some animations:
- First, let's create our Todo component:
import React, { Component } from 'react';
import uuidv4 from 'uuid/v4';
import List from './List';
import './Todo.css';
class Todo extends...