import React from 'react'; import { Button } from 'antd-mobile'; import Icon from 'components/Icon'; import styles from './item.less'; const Index = ({ id, image, title, like, share, buttonLable, onClickLike, onClickShare, onClickButton, showCnt=true }) => { const showCntStyle={display:showCnt?'flex':'none'} const showActionStyle={"flexDirection":showCnt?'row':'row-reverse'} return (