arkilis
7/1/2017 - 9:58 PM

Define props in Component Comment

Define props in Component Comment

class Comment extends React.Component {
  render() {
    return(
      <div className="comment">    
        <img src={this.props.avatarUrl} alt={`${this.props.author}'s picture`} />
        <p className="comment-header">{this.props.author}</p>
        <p className="comment-body">
          {this.props.body}
        </p>
        <div className="comment-actions">
          <a href="#">Delete comment</a>
        </div>
      </div>
    );
  }
}