Reading 36 Application State - liz-kavalski-401-advanced-javascript/seattle-javascript-401n13 GitHub Wiki

Worlds Easiest Guide to Redux

  • For more information
  • Help tame the front-end
  • Redux help store the state.
  • The only way to change state is with a type of action.
  • To create a store :
import { createStore } from "redux"; //an import from the redux library
const store = createStore();  // an incomplete solution - for now.
  • the store take-in an argument which is the reducer

Testing with Redux and Enzyme

Testing Reducers