
Week 23: I Finally Went Deep Into Redux (And It Started Making Sense)
This week was intense. Not because Redux is impossible… But because I finally stopped just “using” it — and started understanding how it actually works under the hood . And that changed everything. From Confusion to Clarity Before this week, Redux felt like a set of rules I had to follow: Dispatch this Write that reducer Create actions Connect everything It worked… but I didn’t fully get it . This week, I decided to go deeper. Understanding the Redux Store (The Brain) The biggest realization: Redux Store is not just storage. It’s the single source of truth for the entire application. Everything flows through it: State lives here Actions go here Reducers update it Once I understood this flow, Redux stopped feeling random. It started feeling predictable . Action Creator Functions (Not Just Functions) Earlier, I used to think action creators were just “extra functions”. But now I understand their real purpose: They make actions: reusable consistent easier to manage Instead of manually cre
Continue reading on Dev.to React
Opens in a new tab



