import './index.less' import React from 'react' interface Iprops { dataSource: T[], // 列表数据源 key: string, // 每一个item唯一的key title: string, // item的主题 } export default function CustomList({ dataSource = [], key, title, }: Iprops) { return (
{dataSource.map(item => (
{item[title]}
))}
) }