react-bits:列表组件

前端之家收集整理的这篇文章主要介绍了react-bits:列表组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

react-bits
原文

不建议将列表内单个元素抽象出组件,建议使用map

const SearchSuggestions = (props) => {
  // renderSearchSuggestion() behaves as a pseudo SearchSuggestion component
  // keep it self contained and it should be easy to extract later if needed
  const renderSearchSuggestion = listItem => (
    <li key={listItem.id}>{listItem.name} {listItem.id}</li>
  );

  return (
    <ul>
      {props.listItems.map(renderSearchSuggestion)}
    </ul>
  );
};

如果组件变的更复杂或者你想在其他地方使用这个组件,建议复制粘贴到一个新的组件,不要过早使用组合。

原文链接:https://www.f2er.com/react/304363.html

猜你在找的React相关文章