The last time I used React we had some pretty awkward workarounds for the fact that components couldn’t be namespaced. I was pretty stoked to find this has been fixed now.
So if you have a component myNavComponent
you can do:
var NavComponent = React.createClass(...);
Define your sub-components as attributes:
NavComponent.Next = React.createClass(...);
NavComponent.Prev = React.createClass(...);
NavComponent.Goto = React.createClass(...);
var Nav = NavComponent;
And then use them as you would expect to in your JSX:
<Nav>
<Nav.Prev />
<Nav.Goto />
<Nav.Next />
</Nav>
https://facebook.github.io/react/docs/jsx-in-depth.html#namespaced-components