Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 1.49 KB

server-side-rendering.md

File metadata and controls

16 lines (9 loc) · 1.49 KB

Server-Side Rendering

The widthMatch and heightMatch values returned from <Observe> and useBreakpoints() default to undefined. This is the case when:

  • the observed min-size isn't specified in your options;
  • rendering a component server-side.

You can use this undefined value to display your component differently for SSR purposes. How you do it is up to you (loading spinner component, default CSS styles, placeholder content, null, etc).

⚠️ Beware of Cumulative Layout Shift

Remember, this is a JavaScript solution to a CSS problem. If you use React Breakpoints to apply different styles to your component based on their size, and you are rendering some HTML server-side, you may end up applying styles to your components that do not match their computed styles once JavaScript loads on the client. This means you could introduce a flash of incorrectly styled content (FOISC?).

Unfortunately, there is no easy way around it: this is the nature of the beast. If you care deeply about CLS (and for public pages you probably should!), you need to keep this side-effect in mind.

However, React Breakpoints truly shines when you're building highly-responsive dashboards with graphs and tables, each individually responsive and aware of their own sizes. Dashboards for signed-in users generally don't suffer from SEO penalties like CLS, because they are not indexed by search engines.