Different strategies to render React applications in order to get the best performance while keeping SEO, Developer Experience and User Experience.
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).
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.
If your visitor is a bot, like GoogleBot or Yandex, use Server Side Rendering and Client Side Rendering. If your visitor is a real user, use Client Side Rendering.