Skip to content

Instantly share code, notes, and snippets.

@aofleejay
Last active May 30, 2018 17:50
Show Gist options
  • Save aofleejay/aa094db354cdcc889994ea433fa737d6 to your computer and use it in GitHub Desktop.
Save aofleejay/aa094db354cdcc889994ea433fa737d6 to your computer and use it in GitHub Desktop.
<CommentList /> with HOC
import React, { Component } from 'react'
import withLoading from '../hocs/withLoading'
class CommentList extends Component {
render() {
return (
<ul>
{
this.props.comments.map(({ id, body }) => <li key={id}>{body}</li>)
}
</ul>
)
}
}
export default withLoading(CommentList)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment