1. import {Card} from 'antd'
    2. const style={
    3. width:'400px',
    4. margin:'30px',
    5. boxShadow:'0 4px 8px 0 rgba(0,0,0,0.2)',
    6. border:'1px solid #e8e8e8',
    7. }
    8. export default () => {
    9. return (
    10. <Card style={style} actions={[<a>操作一</a>,<a>操作二</a>] }>
    11. <Card.Meta avatar={<img
    12. alt=""
    13. style={{ width: '64px', height: '64px', borderRadius: '32px' }}
    14. src="https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png"/>}
    15. title="Alipay"
    16. description="在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的组件会被抽离成一套标准规范。"
    17. />
    18. </Card>
    19. );
    20. }

    image.png