import React from 'react'; import { SearchBar } from 'antd-mobile'; import Item from './item'; import styles from './index.less'; const Index = ({ dataSource=[], buttonLable, onClickLike, onClickShare, onClickButton,showCnt }) => { const renderItem = () => { return dataSource.map(x => ( )); }; return (
{renderItem()}
); }; export default Index;