Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 537 Bytes

File metadata and controls

17 lines (14 loc) · 537 Bytes

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
...