useReducer vs useState in React
A guide explaining when to use the useState vs useReducer hooks for state management in React applications.
A guide explaining when to use the useState vs useReducer hooks for state management in React applications.
A tutorial showing how to migrate React Class Components to Function Components using React Hooks for state and side-effects.
A React team member shares personal strategies for coping with stress and feedback after major project releases like React Hooks.
A guide to creating a custom React Hook, useInterval, to make setInterval work declaratively with React Hooks.
A new course teaching how to refactor React class components to use modern function components with Hooks and Suspense.
Explores the future of React render props with the rise of Hooks, comparing implementations and arguing both have a place.
Explores the evolution of React Context API and how new features like Hooks simplify consuming multiple contexts in components.
How to refactor React tests to avoid breaking when migrating class components to function components with Hooks.
Explains the array destructuring syntax used in React's useState Hook, showing how to understand and 'de-sugar' the syntax.
A historical React article explaining when to avoid the render props pattern, advocating for custom hooks as a superior alternative.
Explores React's 'new' Context API, its evolution with hooks, and why it's a stable solution for state management.
Explains the state reducer pattern in React for flexible UI library state management, using downshift as an example.
A React tutorial showing a technique to handle loading states within stateless functional components, useful for conditional rendering.