Skip to content

Commit b236aa7

Browse files
authored
Update server-side-rendering.md
1 parent 1f8583c commit b236aa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/server-side-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Commonly speaking SSR means the majority of your app's code can run on both the server and the client, it is also as known as "isomorphic app" or "universal app". In React, you can render your components to html on the server side (usually a nodejs server) by `ReactDOMServer.renderToString`, reuse the server-rendered html and bind events on the client side by `React.hydrate`.
1010

11-
#### Props
11+
#### Pros
1212

1313
* Better SEO, as the search engine crawlers will directly see the fully rendered page.
1414
* Faster time-to-content, especially on slow internet or slow devices.

0 commit comments

Comments
 (0)