Skip to content

Instantly share code, notes, and snippets.

@joshwcomeau
Created February 9, 2016 02:29
Show Gist options
  • Save joshwcomeau/4e6647392161956d62fd to your computer and use it in GitHub Desktop.
Save joshwcomeau/4e6647392161956d62fd to your computer and use it in GitHub Desktop.
Animating the Unanimatable
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