💡 Document all Redux store files

This commit is contained in:
Philipp Stracker 2024-11-18 18:51:11 +01:00
parent fee9a016c6
commit ef873dcda2
No known key found for this signature in database
7 changed files with 69 additions and 0 deletions

View file

@ -1,3 +1,13 @@
/**
* Action Creators: Define functions to create action objects.
*
* These functions update state or trigger side effects (e.g., async operations).
* Exported functions must have unique names across all store modules.
* Actions are categorized as Transient, Persistent, or Side effect.
*
* @file
*/
import ACTION_TYPES from './action-types';
/**