Using the React.findDOMNode method that was introduced in v0.13.0 I am able to get the DOM node of each child component that was passed into a parent by mapping
This may be possible by using the refs attribute.
In the example of wanting to to reach a From there getting the correct DOM node of each child may be as simple as mapping over Here's the official react documentation on refs for more info.React.findDOMNode(this.refs.myExample).
this.refs.myExample.children(I haven't tested that yet) but you'll at least be able to grab any specific mounted child node by using the ref attribute.