DEV Community

Discussion on: Why React projects still use Redux

Collapse
 
hinasoftwareengineer profile image
Hina-softwareEngineer

Hey, Alexandru-Dan-Pop, I had an interview last week in which the interviewer asked about redux 3 principles. Can you please tell me those three principles?. As I used redux in only one project but don't know the principles of redux.

Collapse
 
alexandrudanpop profile image
Alexandru-Dan Pop

Single source of truth, state is read-only, changes made with pure functions.
redux.js.org/introduction/three-pr...

Collapse
 
hinasoftwareengineer profile image
Hina-softwareEngineer

Thank you so much. Now, I got it.😀😀 This link helped me a lot.