...
/Overview: Managing Local and Global States in Next.js
Overview: Managing Local and Global States in Next.js
Get an overview of state management and two approaches for global state management: React Context APIs and Redux.
We'll cover the following...
Introduction
State management is one of the central parts of any React application, Next.js apps included. When talking about state, we refer to those dynamic pieces of information that allow us to create highly interactive user interfaces (UIs), making our customers’ experience as beautiful and enjoyable as possible.
Understanding State in Modern UIs
Thinking about modern websites, we can spot ...