Created
February 9, 2016 02:29
-
-
Save joshwcomeau/4e6647392161956d62fd 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
class ArticleList extends Component { | |
render() { | |
return ( | |
<div id="article-list"> | |
{ this.props.articles.map( article => <Article key={article.id} {...article} /> ) } | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment