Skip to content

Commit d0d05fa

Browse files
committed
Update README
1 parent 4659724 commit d0d05fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Different strategies to render React applications in order to get the best perfo
55
[Slides](https://slides.com/miguelangeldurangarcia/react-rendering-strategies#)
66
[Video](https://www.youtube.com/watch?v=v7ql02xHRtg&feature=youtu.be)
77

8-
## Dynamic Rendering 🔀
9-
If your visitor is a bot, like GoogleBot or Yandex, use Server Side Rendering and Client Side Rendering.
10-
If your visitor is a real user, use Client Side Rendering.
11-
128
## Static Content 📸
139
Server Side Rendering for a component and skip the hydration step on the client. Useful for components that don't need to use interactivity (like SEO links).
1410

1511
## Progressive Hydration 🏁
1612
Server Side Rendering for a component and skip the hydration step on the client but, as soon as it appears on the viewport, hydrate it. Useful for list of items or components that are not visible on the viewport but yet you need to render them for SEO.
13+
14+
## Dynamic Rendering 🔀
15+
If your visitor is a bot, like GoogleBot or Yandex, use Server Side Rendering and Client Side Rendering.
16+
If your visitor is a real user, use Client Side Rendering.

0 commit comments

Comments
 (0)