import React, { PureComponent } from 'react'; import { List, Icon, Tag } from 'antd'; import { connect } from 'dva'; import ArticleListContent from '@/components/ArticleListContent'; import styles from './Articles.less'; @connect(({ list }) => ({ list, })) class Center extends PureComponent { render() { const { list: { list }, } = this.props; const IconText = ({ type, text }) => ( {text} ); return ( ( , , , ]} > {item.title} } description={ Ant Design 设计语言 蚂蚁金服 } /> )} /> ); } } export default Center;