Warning: Each child in a list should have a unique "key" prop.
说明:表格数据赋值给一个 key 值
<Table columns={columns} dataSource={data.map((item) => ({ ...item, key: item.id }))} />
标签:antd5,child,list,should,Warning,key,Each
From: https://www.cnblogs.com/DL-CODER/p/17584609.html