Redux Recipes - Tuong-Nguyen/JavaScript-Structure GitHub Wiki
- What tools and libraries I should use? React Redux Devtools & libraries
- I want efficiently compute derived data from the Redux store. Memoized Selectors
- I want implement undo/redo features for the application. Undo History
- Think about the application data I need to manage. Shape of State
- I don't want use
switch...case
in reducer. Refactoring Reducers - How should I store the data in State? Normalized Data in State
- I want reduce duplication by reusing the same common logic for each data type. Reusing Reducer Logic