美文网首页
2020-02-17

2020-02-17

作者: 英宁_b9c0 | 来源:发表于2020-02-17 15:52 被阅读0次
// bad
class Listing extends React.Component {
  render() {
    return <div>{this.props.hello}</div>;
  }
}

// bad (因为箭头函数没有“name”属性)
const Listing = ({ hello }) => (
  <div>{hello}</div>
);

// good
function Listing({ hello }) {
  return <div>{hello}</div>;
}

相关文章

网友评论

      本文标题:2020-02-17

      本文链接:https://www.haomeiwen.com/subject/hgnbfhtx.html