How to useReducer in React
A step-by-step tutorial on using the useReducer hook in React for state management, including a practical example.
A step-by-step tutorial on using the useReducer hook in React for state management, including a practical example.
A tutorial on using React Hooks to build a Todo List app in React Native, covering setup, common hooks, and flexbox.
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.
Explains the array destructuring syntax used in React's useState Hook, showing how to understand and 'de-sugar' the syntax.
How to refactor React tests to avoid breaking when migrating class components to function components with 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.
A historical React article explaining when to avoid the render props pattern, advocating for custom hooks as a superior alternative.
Explains the state reducer pattern in React for flexible UI library state management, using downshift as an example.
Explores React's 'new' Context API, its evolution with hooks, and why it's a stable solution for state management.
A React tutorial showing a technique to handle loading states within stateless functional components, useful for conditional rendering.