[TableBody] passes [null]
as children to children it clones
#4881
Labels
component: table
This is the name of the generic UI component, not the React module!
I've been having performance issues with a
Table
+RadioButton
combination, so I was attempting to improve performance by wrapping myTableRow
elements in a pure component.However I discovered that
TableBody
clones the component I pass to it and calls it in a way that causes[null]
to be passed aschildren
to the component.Since the array object containing
null
is different each time, this results in standard pure components never acting pure when passed toTableBody
.The text was updated successfully, but these errors were encountered: