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).
npm install @midudev/react-static-contentServer 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).
- ⚡ Avoid re-hydrate for static components
- 🤳 Thus could greatly improve TTI
## How to use 👨🏫
Just wrap the components you want to be static on the client.
``javascript
import StaticContent from '@midudev/react-static-content'
export default function SeoFooter({listOfLinks}) {
return (
)
}
``