Web / React native Interview questions
What are the 3 fundamental principles of REDUX?
Single source of truth - the global state of your application is stored in an object tree within a single store.
State is read-only - the only way to change the state is to emit an action, an object describing what happened.
Changes are made with pure function - To specify how the state tree is transformed by actions, write pure reducers.
More Related questions...