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.ts # Contains the redux actions for user management
    InitialState.ts # Contains the initial values for the state related to the user
    Reducers.ts # Contains the redux reducers for user management
Team/
    Actions.ts
    InitialState.ts
    Reducers.ts
...