Please enable JavaScript.
Coggle requires JavaScript to display documents.
Redux Essentials (01- What is Redux (Plan a redux app (identify the…
Redux Essentials
01- What is Redux
-
-
-
flux has multiple store, redux has one store only, no dispatcher
-
pure functions- takes the input n produces the output with no side effect. They dont modify the args or global variables.
Immutability
cant change, instead produce new results
composition
one functions output becomes other functions input/argument to next function until we get the final output
-
-
-
04- Action creators
-
-
-
so we dont directly dispatch the action, we use action creators
-
-
-