import React from 'react'; import { List, Card, Icon, Dropdown, Menu, Avatar, Tooltip } from 'antd'; import numeral from 'numeral'; import { formatWan } from '../../../utils/utils'; import stylesApplications from '../../List/Applications.less'; export default props => { const { list } = props; const itemMenu = ( 1st menu item 2nd menu item 3d menu item ); const CardInfo = ({ activeUser, newUser }) => (

活跃用户

{activeUser}

新增用户

{newUser}

); return ( ( , , , , ]} > } title={item.title} />
)} /> ); };