Skip to content

Latest commit

 

History

History

Stores

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Redux is a library that helps managing the application state.

This directory contains redux actions, reducers and stores.

Here is an example of how to organize those concepts by theme:

User/
    Actions.js # Contains the redux actions for user management
    InitialState.js # Contains the initial values for the state related to the user
    Reducers.js # Contains the redux reducers for user management
Team/
    Actions.js
    InitialState.js
    Reducers.js
...