1
ReactIntermediate#forms
The process where React attaches event listeners and state to server-rendered HTML instead of recreating it. If the client render differs from the server HTML you get a hydration mismatch warning.
// mismatch: server has no window const v = typeof window !== 'undefined' ? localStorage.theme : 'light'; // fix: read it inside useEffect after mount