Skip to content

Commit 7326aa3

Browse files
authored
Update README.md
1 parent 0c14e40 commit 7326aa3

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
@@ -1,16 +1,16 @@
1-
# React rendering strategies
1+
# React rendering strategies
22

33
Different strategies to render React applications in order to get the best performance while keeping SEO, Developer Experience and User Experience.
44

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
8+
## Dynamic Rendering 🔀
99
If your visitor is a bot, like GoogleBot or Yandex, use Server Side Rendering and Client Side Rendering.
1010
If your visitor is a real user, use Client Side Rendering.
1111

12-
## Static Content
12+
## Static Content 📸
1313
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).
1414

15-
## Progressive Rendering
15+
## Progressive Rendering 🏁
1616
Server Side Rendering for a component and skip the hydration step on the client but, as soon as it appears on the viewport, then hydrate it. Useful for list of items.

0 commit comments

Comments
 (0)