0 votes
in ReactJS by
What is react Redux?

1 Answer

0 votes
by

The basic idea of Redux is that the entire application state is kept in a single

store. The store is simply a javascript object. The only way to change the

state is by firing actions from your application and then writing reducers for

these actions that modify the state. The entire state transition is kept inside

reducers and should not have any side-effects.

Redux is based on the idea that there should be only a single source of truth

for your application state, be it UI state like which tab is active or Data state

like the user profile details.

Top 300+ Blockchain Interview Question

Top 300+ Cassandra Interview Question

Top 300+ Devops Interview Question

Top 300+ Continuous Deployment Interview Question

Top 300+ Continuous Integration Interview Question

Related questions

0 votes
asked Mar 3, 2020 in ReactJS by miceperry
+1 vote
asked Jun 25, 2021 in Redux by SakshiSharma
...