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