Skip to content

Instantly share code, notes, and snippets.

@hrumhrumble
Created September 26, 2017 09:34
Show Gist options
  • Save hrumhrumble/2ce64553b9bd6cc2f1892ac2afee986e to your computer and use it in GitHub Desktop.
Save hrumhrumble/2ce64553b9bd6cc2f1892ac2afee986e to your computer and use it in GitHub Desktop.
import React, {Component} from 'react'
import PropTypes from 'prop-types'
class Comment extends Component {
render(){
let {comment} = this.props
return (
<div>
{comment.user}
{comment.text}
</div>
)
}
}
export default Comment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment