Published onJuly 13, 2024How does React know when to re-renderreactfrontendReferential equality in JavaScript and it's importance in React's rendering behavior.
Published onFebruary 28, 2024React Suspense and Data FetchingreactfrontendSuspense has been in React for years, but its data-fetching story is finally stabilizing. Here's what it is, how it works, and when it's the right tool.
Published onOctober 5, 2023When to Use useReducer Instead of useStatereactfrontenduseState is the right default. But when state updates depend on each other or your update logic gets complex, useReducer is the better tool.