About
hydrating a react page is a client side operation that happens on server-rendered markup (SSR) pages.
The hydrate function:
- reads the HTML markup created with the React renderToString
- and build the virtual dom tree.
The hydratation will:
- preserve the rendered content
- and attach event handlers / listeners to the existing markup.
For more information, see Client side operations on server-rendered markup page for an hydration example.