Skip to main content

Command Palette

Search for a command to run...

Latest articles

  1. Redux in a Minute: How Actions Shape Your UI

    Understand how actions, reducers, and the store collaborate to keep your interface in sync When I first built a complex UI, the app state was scattered across components. Props drilling, duplicated state and unpredictable updates made debugging a nightmare. One afternoon I missed a tiny prop update and the UI silently broke. That’s when I discovered Redux. It transformed how I reason about state — predictable, centralized, and easy to trace. This post walks through that mental model so you can use Redux confidently. 👉 UI → Action → Reducer → Store → UI updates

    Apr 17, 20263 min read
    Redux in a Minute: How Actions Shape Your UI