--- title: Subscribe to Derived State impact: MEDIUM impactDescription: reduces re-render frequency tags: rerender, derived-state, media-query, optimization --- ## Subscribe to Derived State Subscribe to derived boolean state instead of continuous values to reduce re-render frequency. **Incorrect (re-renders on every pixel change):** ```tsx function Sidebar() { const width = useWindowWidth() // updates continuously const isMobile = width < 768 return