Throw this when using ant-design's Table component but after I fallback to react everything works fine.
I have compared react-lite and react in this situation and found react normalizes every child in Children.forEach.
Code in react:
// function traverseAllChildrenImpl
var type = typeof children
if (type === 'undefined' || type === 'boolean') {
// All of the above are perceived as null.
children = null
}
Throw this when using ant-design's Table component but after I fallback to react everything works fine.
I have compared react-lite and react in this situation and found react normalizes every child in Children.forEach.
Code in react: