diff --git a/docs/data/material/guides/server-rendering/server-rendering.md b/docs/data/material/guides/server-rendering/server-rendering.md index 061192eab6743f..fe8b651375ed26 100644 --- a/docs/data/material/guides/server-rendering/server-rendering.md +++ b/docs/data/material/guides/server-rendering/server-rendering.md @@ -2,7 +2,7 @@

The most common use case for server-side rendering is to handle the initial render when a user (or search engine crawler) first requests your app.

-When the server receives the request, it renders the required component(s) into an HTML string, and then sends it as a response to the client. +When the server receives the request, it renders the required component(s) into an HTML string and then sends it as a response to the client. From that point on, the client takes over rendering duties. ## MaterialĀ UI on the server @@ -208,7 +208,7 @@ function Main() { ); } -ReactDOM.hydrate(
, document.querySelector('#root')); +ReactDOM.hydrateRoot(document.querySelector('#root'),
); ``` ## Reference implementations