React Ant Design Table Warning: Each child in a list should have a unique key prop
Background
I using Ant Design Table component to accomplish my list page. I return list data to frontend, but I got some error message in browser console.
Error Info
Warning: Each child in a list should have a unique "key" prop. |
Solutions
Add a field “key” to each objects of the list
[{ |
Reasons
Ant design defined this usage.