Question - What are the core principles of Redux?
Answer -
–Single source of Truth: All application data is stored in a single object tree.
- State is read only: The state is immutable.
- State can only be change with Pure Functions: These pure functions are called Reduces and they specify how the object tree is should be updated.