more references

This commit is contained in:
petehunt 2014-02-03 23:33:20 -08:00
parent 9e1c6950b1
commit aebfd641aa
2 changed files with 3 additions and 1 deletions

View File

@ -73,7 +73,7 @@ When you create a React component instance, you can include additional React com
<Parent><Child /></Parent>
```
`Parent` can read its children by accessing the special `this.props.children` prop.
`Parent` can read its children by accessing the special `this.props.children` prop. **`this.props.children` is an opaque data structure:** use the [React.Children utilities](/react/docs/top-level-api.html#react.children) to manipulate them.
### Child Reconciliation

View File

@ -49,3 +49,5 @@ var GenericWrapper = React.createClass({
React.renderComponent(<GenericWrapper>hello</GenericWrapper>, mountNode);
```
To make `this.props.children` easy to deal with, we've provided the [React.Children utilities](/react/docs/top-level-api.html#react.children).