import React from 'react'; import Item from './item'; import styles from './index.less'; const Index = ({ dataSource=[]}) => { const renderItem = () => { return dataSource.map(x => ( <Item {...x} /> )); }; return ( <div className={styles.root}> <div>{renderItem()}</div> </div> ); }; export default Index;