Skip to content

Instantly share code, notes, and snippets.

@khanghoang
Created January 16, 2016 09:44
Show Gist options
  • Save khanghoang/1a54bd5b3cbd0c1bf70e to your computer and use it in GitHub Desktop.
Save khanghoang/1a54bd5b3cbd0c1bf70e to your computer and use it in GitHub Desktop.
import React, {Component} from 'react';
import CommentItemComponent from './CommentItemComponent.js'
class ListCommentsComponent extends Component {
render() {
let comments = this.props.comments.map(c => <CommentItemComponent comment={c} />)
return (
<ul>
{comments}
</ul>
);
}
}
export default ListCommentsComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment