Skip to content

Instantly share code, notes, and snippets.

@joshwcomeau
Created February 12, 2016 13:56
Show Gist options
  • Save joshwcomeau/345b320b2f868bb87dcf to your computer and use it in GitHub Desktop.
Save joshwcomeau/345b320b2f868bb87dcf to your computer and use it in GitHub Desktop.
Animating the Unanimatable
import React from 'react';
import FlipMove from 'react-flip-move';
const ArticleList = ({articles}) => (
<FlipMove>
{ articles.map( article => <Article key={article.id} {...article} /> ) }
</FlipMove>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment