renderCommnet是什么意思

class CommentList extends React.Component {
  constructor(props) {
    super(props);
  }

  render() {
    return <ul> {this.props.comments.map(renderComment)} </ul>;
  }

  renderComment({body, author}) {
    return <li>{body}—{author}</li>;
  }
}

猜你喜欢

转载自blog.csdn.net/game7752/article/details/80193179