Created
February 12, 2016 13:56
-
-
Save joshwcomeau/345b320b2f868bb87dcf to your computer and use it in GitHub Desktop.
Animating the Unanimatable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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