There is a callback now in the React.renderComponent method.
Why not pass rendered component into this callback?
This can be useful when you want to call some component method after it was completely mounted, like this:
React.renderComponent(
<Slider />,
node,
function(component) {
component.setDataSource(data);
}
);