I\'ve got code like the following where I\'m calling ReactDOM.hydrate
. This is shared code that sometimes gets called from the node server and sometimes in the cli
hydrate
do works similar to render
on client side whether the HTML has server rendered markup or not, but when there is no markup previously like not SSR then hydrate
produces some warnings but, it will render your markup as expected.
A better way to solve this would be to check if its SSR (assuming root
as your parent div id) :
var isMarkupPresent = document.getElementById('root').hasChildNodes();
and then you can either render
or hydrate
:
isMarkupPresent ? hydrate(...) ? render(...)