first commit
This commit is contained in:
8
frontend/node_modules/antd/es/form/hooks/useChildren.js
generated
vendored
Normal file
8
frontend/node_modules/antd/es/form/hooks/useChildren.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
import toArray from "rc-util/es/Children/toArray";
|
||||
export default function useChildren(children) {
|
||||
if (typeof children === 'function') {
|
||||
return children;
|
||||
}
|
||||
const childList = toArray(children);
|
||||
return childList.length <= 1 ? childList[0] : childList;
|
||||
}
|
||||
Reference in New Issue
Block a user