Skip to content

SSR

Server Side Rendering

React Version

Primitives in React versions less than 18 rely on hydration for ids (used in aria attributes) to avoid server/client mismatch errors.

https://ahooks.js.org/guide/blog/ssr/

Server-Side Data Fetching: Utilize the useEffect hook with empty dependency array to perform data fetching on the server side. This ensures that data is fetched before rendering the component.