You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
527 B
527 B
id | title | layout | permalink |
---|---|---|---|
children-prop-type | Type of the children prop | docs | children-prop-type.html |
Problem
You get errors while manipulating this.props.children
inside a component.
Solution
Usually, children
is an array of components. To save an extra array allocation, when it only contains one single component, it returns the component itself.
This means accessing, for example, this.props.children.length
might be misleading since it could be the length property of a single string component.