React.Children
React.Children
React.Children.map
Invokes a function on every immediate child contained within children with this set to thisArg.
If children is an array it will be traversed and the function will be called for each child in the array. If children is null or undefined, this method will return null or undefined rather than an array. If children is a Fragment it will be treated as a single child and not traversed.
React.Children.forEach
React.Children.count
Returns the total number of components in children, equal to the number of times that a callback passed to map or forEach would be invoked.
React.Children.only
Verifies that children has only one child (a React element) and returns it. Otherwise this method throws an error.
Semantic portal